Skip to content

Commit

Permalink
Do not run gui tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Aug 23, 2024
1 parent 8b9694f commit 31d3aa2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci/testkomodo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ start_tests () {

pushd ${CI_TEST_ROOT}/tests

python -m pytest -n auto --mpl --benchmark-disable --eclipse-simulator \
--durations=0 -sv --dist loadgroup -m "not limit_memory" --max-worker-restart 0
pytest tests --eclipse-simulator -n logical --show-capture=stderr -v --max-worker-restart 0 \
-m "not limit_memory and not requires_window_manager" --benchmark-disable --dist loadgroup
pytest tests --eclipse-simulator -v --mpl \
-m "not limit_memory and requires_window_manager" --benchmark-disable

# Restricting the number of threads utilized by numpy to control memory consumption, as some tests evaluate memory usage and additional threads increase it.
export OMP_NUM_THREADS=1
Expand Down

0 comments on commit 31d3aa2

Please sign in to comment.