Skip to content

Commit

Permalink
Update testing to Python 3.9 env
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtemple committed Apr 6, 2022
1 parent f42fdbf commit 15c1a23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
test:
docker:
- image: circleci/python:3.7.3
- image: cimg/python:3.9.12

steps:
- checkout
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py37
envlist = py39

[testenv]
deps = -rrequirements.txt
commands =
mypy lkml
pytest -m "not acceptance"
pytest -m "acceptance"
flake8 lkml
isort -rc --check lkml
black --check lkml
isort -rc --check lkml
pytest -m "not acceptance"
pytest -m "acceptance"

0 comments on commit 15c1a23

Please sign in to comment.