Skip to content

Commit

Permalink
Add missing -r to pip install call.
Browse files Browse the repository at this point in the history
Issue #913

Signed-off-by: Henner Zeller <[email protected]>
  • Loading branch information
hzeller committed Jul 10, 2020
1 parent 16bfad4 commit 7b378a5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ Initialize the submodules:
$ git submodule update --init --recursive
```

Install all the python dependencies:
Install all the python dependencies and make sure the installed binaries can be called.

```
pip3 install --user conf/requirements.txt
```bash
pip3 install --user -r conf/requirements.txt
export PATH=~/.local/bin:$PATH
```

Build tools (optional, tools from `PATH` can be used):
Expand Down Expand Up @@ -51,7 +52,7 @@ After creating a new test case it must be correctly tagged:
* `name` - must be unique and should be directly related to what the test case covers.
* `description` - should provide a short description that will be visible in the report page.
* `should_fail_because` - must be used if the test is expected to fail and should contain the reason of failure.
* `files` - is a list of files used by this test case, can be omitted to use only the main file with metadata.
* `files` - is a list of files used by this test case, can be omitted to use only the main file with metadata.
* `incdirs` - can be used to provide a list of include directories, can be omitted to use only the default ones.
* `top_module` - optional, allows to specify which module is the top one.
* `tags` - tag must be used to specify which part of SystemVerilog specification this test case covers.
Expand Down

0 comments on commit 7b378a5

Please sign in to comment.