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: with:
poetry-version: ${{ matrix.poetry-version }} poetry-version: ${{ matrix.poetry-version }}
- name: Run tests with pytest # test script - name: Install Dependencies # test script
run: | run: poetry install
poetry install
poetry run python -m unittest discover -s tests - name: Run Tests # test script
run: poetry run python -m unittest discover -s tests