Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

feat: add python 3.12 support #739

Closed
Closed
Changes from all commits
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
13 changes: 7 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
[tox]
envlist = py{38}
envlist = py{38, 312}
skip_missing_interpreters = True

[testenv]
deps =
pytest
pytest
-r{toxinidir}/requirements/testing.txt
allowlist_externals=pytest
commands=pytest {posargs:-n auto}
setenv =
allowlist_externals = pytest
commands = pytest {posargs:-n auto}
setenv =
AWS_DEFAULT_REGION=us-east-1

[pytest]
addopts = --cov tubular --cov-report term-missing --cov-report xml
norecursedirs = .* requirements
testpaths =
testpaths =
tests

Loading