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

This commit is contained in:
Jason Rhinelander 2016-12-19 11:33:02 -05:00 committed by Wenzel Jakob
parent 06b9397c72
commit 05920e363e

View File

@ -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:
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.