Skip to content

Commit

Permalink
Run all nox sessions on all Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed May 19, 2020
1 parent fe29cde commit 210f3d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def tests(session):
session.run("pytest", *args)


@nox.session(python="3.8")
@nox.session(python=["3.7", "3.8"])
def flake8(session):
"""Lint using flake8."""
args = session.posargs or locations
Expand All @@ -31,7 +31,7 @@ def flake8(session):
session.run("flake8", *args)


@nox.session(python="3.8")
@nox.session(python=["3.7", "3.8"])
def mypy(session):
"""Type-check using mypy."""
args = session.posargs or locations
Expand Down

0 comments on commit 210f3d7

Please sign in to comment.