Skip to content

Commit 7f18fac

Browse files
committed
Formatting, add verbosity for debugging
1 parent e50f59f commit 7f18fac

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.github/workflows/tests.yaml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8']
20+
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7", "pypy-3.8"]
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222
steps:
23-
- uses: actions/checkout@master
24-
- uses: actions/setup-python@v2
25-
with:
26-
python-version: ${{ matrix.python-version }}
27-
- name: Ensure poetry
28-
uses: abatilo/[email protected]
29-
- name: Install dependencies
30-
run: poetry install
31-
- name: Run matrix of tests with Tox
32-
run: poetry run tox
23+
- uses: actions/checkout@master
24+
- uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
- name: Ensure poetry
28+
uses: abatilo/[email protected]
29+
- name: Install dependencies
30+
run: poetry install
31+
- name: Run matrix of tests with Tox
32+
run: poetry run tox -vvv
33+
- name: Run pytest just in case Tox no worky
34+
run: pytest -v tests/ --cov-report=term-missing --cov=graphene_pydantic

0 commit comments

Comments
 (0)