Skip to content
Merged
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
4 changes: 2 additions & 2 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,11 +248,11 @@ def test(runtime, toolkit, environment):

parameters["integrationtests"] = os.path.abspath("integrationtests")
commands = [
"edm run -e {environment} -- coverage run -p -m unittest discover -v traitsui",
"edm run -e {environment} -- python -W default -m coverage run -p -m unittest discover -v traitsui",
# coverage run prevents local images to be loaded for demo examples
# which are not defined in Python packages. Run with python directly
# instead.
"edm run -e {environment} -- python -m unittest discover -v {integrationtests}",
"edm run -e {environment} -- python -W default -m unittest discover -v {integrationtests}",
]

# We run in a tempdir to avoid accidentally picking up wrong traitsui
Expand Down