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

Fix build docs #3823

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the source code for the OTX documentation. It is built using sphinx-desi
To install the dependencies, run the following command:

```bash
otx install --option docs
pip install otx[docs]
```

## Build
Expand Down
10 changes: 2 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,7 @@ commands =
[testenv:build-doc]
deps =
{[testenv:unit-test-py310]deps}
.[docs]
commands_pre =
; [TODO]: Needs to be fixed so that this is not duplicated for each test run
otx install -v
.[base,docs]
change_dir = {toxinidir}/docs
allowlist_externals =
make
Expand All @@ -104,13 +101,10 @@ commands =

[testenv:fuzzing]
deps =
.[dev]
.[base,dev]
atheris
coverage
extras = full
commands_pre =
; [TODO]: Needs to be fixed so that this is not duplicated for each test run
otx install -v
commands =
coverage erase
- coverage run tests/fuzzing/cli_fuzzing.py {posargs:-artifact_prefix={toxworkdir}/ -print_final_stats=1 -atheris_runs=500000}
Expand Down
Loading