GHA: run pytest

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2020-05-02 09:14:16 +09:00
parent 048d129768
commit 73678ef88f
2 changed files with 10 additions and 0 deletions

View File

@@ -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

View File

@@ -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