From e5550addfff6f6cda468dc166ba9d2730e797aef Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 25 Jul 2020 23:33:51 +0200 Subject: [PATCH] Replace call to ctest with call to pytest tests\regression_tests\shapes which was the only test actually executed by ctest. --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28608a717..d4be50d19 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,11 +134,10 @@ portable-source: mv graphviz-install.exe graphviz-install-$GV_VERSION-$API.exe; $env:Path += ";" + $env:graphviz_install_dir + "\bin" dot -c; - ctest -C $env:configuration; cd ..; $Env:INCLUDE += ";C:\Graphviz\include"; $Env:LIB += ";C:\Graphviz\lib"; - python3 -m pytest --junitxml=report.xml rtest\test_examples.py; + python3 -m pytest --junitxml=report.xml rtest\test_examples.py tests\regression_tests\shapes; } elseif($env:build_system -eq "msbuild") { # Append build destination to the PATH, configure dot and execute regression tests -- 2.40.0