Skip to content

Commit

Permalink
ci: ignore errors on 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrifiro committed Jul 11, 2022
1 parent 4c87207 commit c74c603
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ jobs:
nox --version
- name: Lint code and check dependencies
if: matrix.pyv != '3.11-dev'
continue-on-error: ${{ matrix.pyv == '3.11-dev' }}
run: nox -s lint safety

- name: Run tests
run: nox -s $TEST_SESSION -- --cov-report=xml
continue-on-error: ${{ matrix.pyv == '3.11-dev' }}
shell: bash
env:
TEST_SESSION: ${{ matrix.nox_session || format('tests-{0}', matrix.pyv) }}
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ tests =
pylint==2.14.3
mypy==0.961
types-requests==2.28.0
fsspec>=2022.02.0; python_version < '3.11'
fsspec>=2022.02.0

s3 =
moto[server]==3.1.16
s3fs[boto3]>=2022.02.0; python_version < '3.11'
s3fs[boto3]>=2022.02.0

azure =
adlfs>=2022.02.22; python_version < '3.11'
adlfs>=2022.02.22
%(docker)s

gcs =
gcsfs>=2022.02.22; python_version < '3.11'
gcsfs>=2022.02.22
%(docker)s

docker =
Expand Down

0 comments on commit c74c603

Please sign in to comment.