Skip to content

Commit

Permalink
put build in docs dir
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Nov 30, 2023
1 parent 41c26f3 commit 60430e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Test docs
run: |
make -C ./docs html
python -m sphinx -b linkcheck docs/source build/linkcheck
python -m sphinx -b linkcheck ./docs/source ./docs/build/linkcheck
- name: Test code
run: pytest --cov=./osmnx --cov-report=term-missing --verbose
2 changes: 1 addition & 1 deletion tests/lint_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ twine check --strict ./dist/*

# build the docs
make -C ./docs html
python -m sphinx -b linkcheck docs/source docs/build/linkcheck
python -m sphinx -b linkcheck ./docs/source ./docs/build/linkcheck

# run the tests and report the test coverage
pytest --cov=./osmnx --cov-report=term-missing --verbose
Expand Down
2 changes: 1 addition & 1 deletion tests/packaging.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mamba update conda-smithy --yes --no-banner
# test the docs build and validate that all their links are live
rm -rf ./docs/build
make -C ./docs html
python -m sphinx -b linkcheck docs/source build/linkcheck
python -m sphinx -b linkcheck ./docs/source ./docs/build/linkcheck
rm -rf ./docs/build

# get the current package version number
Expand Down

0 comments on commit 60430e4

Please sign in to comment.