Skip to content

Commit 446ca0f

Browse files
committed
Add tox env verifying plain install (without dev requirements).
1 parent 9115580 commit 446ca0f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tox.ini

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
env_list = py{310,311,312},notebooks,py{310,311,312}-ml
2+
env_list = py{310,311,312},notebooks,py{310,311,312}-ml,py{310,311,312}-verify-install
33

44
[gh-actions]
55
python =
@@ -123,3 +123,10 @@ deps =
123123
-r requirements-dev.txt
124124
commands =
125125
python -m build
126+
127+
[testenv:py{310,311,312}-verify-install]
128+
# install flatland-rl without additional dependencies
129+
skip_install = false
130+
commands =
131+
python --version
132+
python -c 'from flatland.evaluators.service import FlatlandRemoteEvaluationService'

0 commit comments

Comments
 (0)