Skip to content

Commit 5b23547

Browse files
authored
[Build] Fixes (#1382)
The Docs build was running out of disk space, so move to `Large_Linux` nodes (not sure what caused this, but it's not a high priority to run down). Also fix a small issue in the Notebooks build. Since there are now two `pytest` invocations, we need to make sure that the second doesn't overwrite coverage results from the first.
1 parent 780c2c4 commit 5b23547

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
check_ReadMe:
25-
runs-on: ubuntu-latest
25+
runs-on: Large_Linux
2626
environment: test
2727
strategy:
2828
fail-fast: false # Don't cancel all on first failure

.github/workflows/notebook_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
./tests/notebooks/test_notebooks_azure.py
7777
7878
# Then do the rest
79-
pytest -vv --cov=guidance --cov-report=xml --cov-report=term-missing \
79+
pytest -vv --cov=guidance --cov-report=xml --cov-report=term-missing --cov-append \
8080
./tests/notebooks/test_notebooks.py
8181
- name: Upload coverage reports to Codecov
8282
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)