From 16321f8e6d12f4a2383cc781043a68fb50d318fe Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Fri, 5 Apr 2024 22:28:23 +0200 Subject: [PATCH] Remove nose from tox.ini + add py312 --- tox.ini | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 9b25c55..ac89bf1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py37, py38, py39, py310, py311 +envlist=py37, py38, py39, py310, py311, py312 skip_missing_interpreters = true [pycodestyle] @@ -12,12 +12,13 @@ max-line-length=100 setenv = PASSWORD_STORE_DIR = {env:HOME}/.password-store passenv = PYCAOSDBINI deps=pytest - nose pytest-cov python-dateutil + setuptools + jsonschema commands_pre=pip install ../caosdb-pylib/ python --version - python -c "import caosdb; print(caosdb.version.version)" + python -c "import linkahead; print(linkahead.version.version)" # Add "-x" to stop at first error. commands=pytest --cov=caosdb -vv {posargs} -- GitLab