From 70c33ff7df1868578375b2648b77f8a0caa485f2 Mon Sep 17 00:00:00 2001 From: mac12m99 Date: Sat, 25 Jul 2020 15:03:16 +0200 Subject: [PATCH] ops --- .github/workflows/tests.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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