Commit 05920e36 by Jason Rhinelander Committed by Wenzel Jakob

Change compilation/test target back to `check` (#566)

parent 06b9397c
...@@ -25,7 +25,7 @@ After installing the prerequisites, run ...@@ -25,7 +25,7 @@ After installing the prerequisites, run
mkdir build mkdir build
cd build cd build
cmake .. cmake ..
make pytest -j 4 make check -j 4
The last line will both compile and run the tests. The last line will both compile and run the tests.
...@@ -42,7 +42,7 @@ To compile and run the tests: ...@@ -42,7 +42,7 @@ To compile and run the tests:
mkdir build mkdir build
cd build cd build
cmake .. cmake ..
cmake --build . --config Release --target pytest cmake --build . --config Release --target check
This will create a Visual Studio project, compile and run the target, all from the This will create a Visual Studio project, compile and run the target, all from the
command line. command line.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment