Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing -r to pip install call. #922

Merged
merged 1 commit into from
Jul 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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