diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32495281..91de0543 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: CI +name: Test Suite # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch @@ -33,9 +33,12 @@ jobs: pip install html-testRunner - name: Run tests - run: python test.py + run: | + export KODI_HOME=$GITHUB_WORKSPACE/tests/home + export KODI_INTERACTIVE=0 + python tests.py - uses: actions/upload-artifact@v2 with: name: report - path: reports/report.html \ No newline at end of file + path: reports/report.html