Skip to content

Commit

Permalink
feat: promote 3.9 to main version (as it is in Cloudtops now for loca…
Browse files Browse the repository at this point in the history
…l testing) and add a small unit test for persoanl use (#292)
  • Loading branch information
dhercher committed Jul 23, 2021
1 parent 9076286 commit eb0f21a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@


# Python version used for linting.
DEFAULT_PYTHON_VERSION = "3.7"
DEFAULT_PYTHON_VERSION = "3.9"

# Python versions used for testing.
PYTHON_VERSIONS = ["3.7", "3.8", "3.9"]
Expand Down Expand Up @@ -64,6 +64,11 @@ def unit(session):
)


@nox.session(python=DEFAULT_PYTHON_VERSION, venv_backend="venv")
def unit_small(session):
unit(session)


@nox.session(python=PYTHON_VERSIONS, venv_backend="venv")
def samples(session):
"""Run the snippets test suite."""
Expand Down

0 comments on commit eb0f21a

Please sign in to comment.