Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ stages:
- name: basic tests
if: (type = pull_request) OR (type = push AND repo = icesat2py/icepyx AND branch IN (main, development))
- name: behind Earthdata
if: branch = main OR commit_message =~ nsidc_tests OR type = cron
if: branch IN (main, atl14-data-download) OR commit_message =~ nsidc_tests OR type = cron

#ultimately move basic tests list into a separate script with the list of files to run (then this can be put into a matrix and parallellized as well)
jobs:
include:
- stage: basic tests
script: pytest icepyx/ --verbose --cov app --ignore icepyx/tests/test_behind_NSIDC_API_login.py
script: pytest --verbose icepyx/ --cov app --ignore icepyx/tests/test_behind_NSIDC_API_login.py
after_success: codecov/codecov-action@v3

- stage: behind Earthdata
script:
- export NSIDC_LOGIN=$NSIDC_LOGIN
- pytest icepyx/tests/test_behind_NSIDC_API_login.py
- pytest --verbose icepyx/tests/test_behind_NSIDC_API_login.py
Loading