Skip to content

Commit

Permalink
Debug docs. Comment tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas-Piter authored Sep 11, 2024
1 parent 1fbdd69 commit 0558e31
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
unzip testdata.zip
mv testdata tests/
mamba list
make pytest
#make pytest
shell: bash

- name: create docs
Expand Down Expand Up @@ -206,6 +206,16 @@ jobs:
mkdir -p public/images/
mkdir -p public/coverage
mkdir -p public/test_reports
ls -al docs/_build/html
# Copy command with checks if directories exist
if [ -d docs/_build/html ]; then
cp -r docs/_build/html/* public/doc/
else
echo "docs/_build/html does not exist"
exit 1
fi
cp -r docs/_build/html/* public/doc/
cp -r htmlcov/* public/coverage/
cp report.html public/test_reports/
Expand Down

0 comments on commit 0558e31

Please sign in to comment.