Skip to content

Commit

Permalink
add pytest-doctestplus to dev requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
henrysky committed Sep 5, 2024
1 parent a7c5962 commit afad962
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: ${{ matrix.PAPER_MODELS == false}}
# Run almost all tests for latest config
run: >
python -m pytest -v --cov astroNN --doctest-glob="*.rst" --junitxml=junit.xml ./docs/source/ tests/test_numpy_tools.py tests/test_loss_func.py
python -m pytest -v --cov astroNN --junitxml=junit.xml --doctest-glob="*.rst" --doctest-continue-on-failure ./docs/source/ tests/test_numpy_tools.py tests/test_loss_func.py
tests/test_layers.py tests/test_apogee_tools.py tests/test_datasets.py tests/test_gaia_tools.py
tests/test_lamost_tools.py tests/test_apogee_model.py tests/test_models.py tests/test_utilities.py tests/test_neuralODE.py
# Run papers models test
Expand Down
1 change: 0 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ Indices, tables and astroNN structure
neuralnets/losses_metrics
neuralnets/layers
neuralnets/callback_utils
neuralnets/neuralODE
neuralnets/basic_usage

.. toctree::
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pytest
pytest-cov
pytest-doctestplus
pydot
graphviz

0 comments on commit afad962

Please sign in to comment.