separated install and test actions

This commit is contained in:
andy 2021-02-07 15:26:14 +00:00
parent 173e287609
commit 4713e82819

View File

@ -23,7 +23,8 @@ jobs:
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Run tests with pytest # test script
run: |
poetry install
poetry run python -m unittest discover -s tests
- name: Install Dependencies # test script
run: poetry install
- name: Run Tests # test script
run: poetry run python -m unittest discover -s tests