attempts to get CI Coverage working reliably

This commit is contained in:
David Koes
2025-06-02 12:36:25 -04:00
parent d67a03ecdc
commit c378116f85
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ jobs:
- name: Coverage - name: Coverage
env: env:
NODE_OPTIONS: "--max_old_space_size=15000" NODE_OPTIONS: "--expose-gc --no-compilation-cache"
# coverage has trouble fetching data for some reason in the CI, # coverage has trouble fetching data for some reason in the CI,
# I don't actually care about the test results (that's tested above) # I don't actually care about the test results (that's tested above)
# so ignore any failure here # so ignore any failure here

View File

@@ -43,7 +43,7 @@
"generate:tests": "python3 tests/auto/generate_tests.py", "generate:tests": "python3 tests/auto/generate_tests.py",
"generate:glcheck": "python3 ./tests/glcheck/generate_glcheck_render_tests.py -min", "generate:glcheck": "python3 ./tests/glcheck/generate_glcheck_render_tests.py -min",
"generate:jest": "python3 tests/jest/generate_jest_render_tests.py", "generate:jest": "python3 tests/jest/generate_jest_render_tests.py",
"cover": "npm run generate:jest && npx jest --coverage --verbose", "cover": "npm run generate:jest && npx jest --coverage --verbose --runInBand",
"doc": "rm -rf doc/ && npx jsdoc -c jsdoc.conf.json src doc.md" "doc": "rm -rf doc/ && npx jsdoc -c jsdoc.conf.json src doc.md"
}, },
"dependencies": { "dependencies": {

View File

@@ -8,7 +8,7 @@ The instructor can pose questions that the students then answer by clicking on a
## Self-Hosting ## Self-Hosting
The easiest way to use the 3Dmol.js active learning environment is through the hosted viewer at [https://3dmol.csb.pitt.edu](https://3dmol.csb.pitt.edu). However, it may be desirable to host your own instance for your class. A light-weight Flask webserver can quickly be brought up on a Ubuntu Linux machine with a few commands: The easiest way to use the 3Dmol.js active learning environment is through the hosted viewer at [https://3dmol.org](https://3dmol.org). However, it may be desirable to host your own instance for your class. A light-weight Flask webserver can quickly be brought up on a Ubuntu Linux machine with a few commands:
```{@lang bash} ```{@lang bash}