diff --git a/.github/workflows/test-install-qt.yml b/.github/workflows/test-install-qt.yml index 973cb81..f985457 100644 --- a/.github/workflows/test-install-qt.yml +++ b/.github/workflows/test-install-qt.yml @@ -18,6 +18,12 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.py }} + - name: Run pytest + run: | + python -m pip install tox-gh-actions + tox + env: + PYTEST_ADDOPTS: "--remote-data" - name: Build a binary wheel and install run: | python -m pip install pep517 --user diff --git a/tox.ini b/tox.ini index c494298..45d3039 100644 --- a/tox.ini +++ b/tox.ini @@ -41,3 +41,7 @@ commands = sphinx-build {posargs:-E} -b html docs dist/docs sphinx-build -b linkcheck docs dist/docs +[gh-actions] +python = + 3.6: py36 + 3.8: py38 \ No newline at end of file