Commit e5f210da authored by Kristin's avatar Kristin Committed by GitHub
Browse files

Add a note about how to run tests. (#316)

* The first step creates a build directory 
* Add a note about running tests.
parent 5f319dc4
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ of a cloned fork of the repository, follow these steps:

```bash
python setup.py install
mkdir build && cd build
cd build
cmake ..
make
```
@@ -43,3 +43,12 @@ running the following command will retrieve the gtest submodule manually:
```bash
git submodule update --init --recursive
```

## Running Tests

To run ctests to test c++ part of ale, run:

```
ctest
```
from the build directory.