From c589d3bfa867e58b7ceb392351e50fdd0974af7f Mon Sep 17 00:00:00 2001 From: Alan Potter Date: Tue, 14 May 2024 06:13:20 -0400 Subject: [PATCH] fixup! ci: add GH workflow --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 51ace839..2215c579 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,8 @@ isolated_build = true envlist = py3{8,9,10,11,12}-{web,django3,flask2} [testenv] +setenv = + APPMAP=false allowlist_externals = env bash @@ -18,9 +20,10 @@ deps= commands = + bash -c 'env | sort' poetry install -v py310-web: poetry run pylint -j 0 appmap _appmap - web: poetry run appmap-python {posargs:pytest -v} + web: poetry run {posargs:pytest -v} django3: poetry run appmap-python pytest -v _appmap/test/test_django.py flask2: poetry run appmap-python pytest -v _appmap/test/test_flask.py