Un-skips the test that checks if building an invalid type throws a ValueError #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run pytests and generate coverage | |
name: Pytests and Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pytests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install testing dependencies | |
run: | | |
pip install pytest | |
- name: Run pytest | |
run: python -m pytest tests | |
coverage: | |
runs-on: ubuntu-latest | |
needs: [pytests] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Install library dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install typing-inspect | |
- name: Install testing and coverage dependencies | |
run: | | |
pip install pytest pytest-cov | |
- name: Run pytest | |
run: python -m pytest --cov=gqlrequests --cov-report=xml tests | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml |