Skip to content

Commit

Permalink
tests: fix ci-test make target
Browse files Browse the repository at this point in the history
The JENKINS_URL mechanism in tox seemingly stopped working. This patch updates
the make file to just provide all ci environments to tox in the ci-test target.

Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Feb 9, 2024
1 parent a2a63b7 commit b7aab6a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ test: | $(PYTHON_ENV)

ci-test: | $(PYTHON_ENV)
. $(PYTHON_ENV)/bin/activate && \
MILAN_CI_TEST=1 tox $(args)
MILAN_CI_TEST=1 tox -e py38,py39,py310,py311 $(args)

frontend: | $(PYTHON_ENV)
. $(PYTHON_ENV)/bin/activate && \
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ skip_missing_interpreters = True
envlist = py310


[tox:jenkins]
envlist = lint,py38,py39,py310,py311


[testenv]
passenv =
MILAN_*
Expand Down

0 comments on commit b7aab6a

Please sign in to comment.