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

gh-actions in tox.ini #49

Merged
merged 2 commits into from
Jul 1, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
gh-actions in tox.ini
  • Loading branch information
peterbe committed Jul 1, 2021
commit c7ffce72784b3bd18332261a4a7c49d13410d167
18 changes: 14 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,28 @@

[tox]
envlist = py35-dj22,
py36-dj22
py37-dj22
py36-dj22,
py37-dj22,
py38-dj22,
py39-dj22,

[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39

[testenv]
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
deps =
deps =
dj22: Django>=2.2.0, <2.3.0
mock

usedevelop = true

commands = pip install -r requirements.txt
Expand Down