Skip to content

Commit de10302

Browse files
authored
Update testing instructions (test after installation) (#106)
1 parent 85721f2 commit de10302

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You are now in a position to install xeus-cpp into this envirnoment. You can do
4141
mkdir build
4242
cd build
4343
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib ..
44-
make
44+
make install
4545
```
4646

4747
To check that everything is installed correctly you can run the c++ tests by executing the following
@@ -56,9 +56,4 @@ and the python tests by executing
5656
```bash
5757
cd ./test
5858
pytest -sv .
59-
```
60-
Once the build is passing all the tests you can install it by executing the following from the test folder
61-
```bash
62-
cd ..
63-
make install
6459
```

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Now you can compile the kernel from the source by executing (replace `$CONDA_PRE
4343
mkdir build
4444
cd build
4545
cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib
46-
make
46+
make install
4747
```
4848
To test the build you execute the following to test the C++ tests
4949
```bash
@@ -54,11 +54,7 @@ and
5454
```bash
5555
pytest -sv .
5656
```
57-
to perform the python tests. Once the build is passing all the tests you can install it by executing the following from the test folder
58-
```bash
59-
cd ..
60-
make install
61-
```
57+
to perform the python tests.
6258

6359
## Installation within a mamba environment (wasm build instructions)
6460

0 commit comments

Comments
 (0)