Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI Failures #915

Merged
merged 2 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- checkout
- run: echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENV
- run: pip install --user tox
- run: pip install --user tox "virtualenv<20.22.0"
- run: tox
test_nooptionals:
parameters:
Expand Down
10 changes: 4 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
[tox]
envlist = coverage-clean,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11,pypy3.7,py3.9-nooptionals,coverage-report,flake8,isort,mypy

[base]
[testenv]
deps =
coverage
pytest
attrs

[testenv]
deps =
{[base]deps}
{py3.7,pypy3.7}: twisted
{py3.7,pypy3.7}: asgiref
py3.7: asgiref
# See https://github.com/django/asgiref/issues/393 for why we need to pin asgiref for pypy
pypy3.7: asgiref==3.6.0
commands = coverage run --parallel -m pytest {posargs}

[testenv:py3.9-nooptionals]
Expand Down