Skip to content

Commit

Permalink
Merge pull request #310 from VirtualPlanetaryLaboratory/download-arti…
Browse files Browse the repository at this point in the history
…fact

Fixed typos in Makefile and pip-install.yml
  • Loading branch information
RoryBarnes authored Sep 6, 2024
2 parents 2f67d49 + cc482fa commit 133407b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
- os: ubuntu-22.04
python-version: '3.6'
- os: macos-14
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: '3.6'
- os: macos-14
python-version: '3.7'
fail-fast: false

steps:
Expand Down Expand Up @@ -61,8 +63,10 @@ jobs:
exclude:
- os: ubuntu-22.04
python-version: '3.6'
- os: macos-14
python-version: '3.6'
- os: macos-14
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: '3.7'
fail-fast: false

steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ tests/Vspace_Log/Log_Test/
*BP_CreateHDF5*
*BP_Extract*
*BP_Stats*
junit/

coverage.info
.coverage
Expand Down
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ test:

coverage:
rm -f ./gcov/*.gcda ./gcov/*.gcno ./.coverage
mkdir -p gcov
gcc -coverage -o ./bin/vplanet src/*.c -lm
python -m pytest --tb=short tests --junitxml=junit/test-results.xml
mkdir -p ./gcov
cd gcov && gcc -coverage -o ./../bin/vplanet ./../src/*.c -lm
pwd
python -m pytest --tb=short tests --junitxml=./junit/test-results.xml
lcov --capture --directory ./gcov --output-file ./.coverage
genhtml ./.coverage --output-directory ./gcov/html

Expand Down

0 comments on commit 133407b

Please sign in to comment.