Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
23 changes: 15 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,19 @@ jobs:
pip install --no-build-isolation --no-deps -e .
cd ..

- name: Install imSim
run:
pip install .

- name: Install test deps
run: |
conda install -y pytest pytest-xdist
pip install pytest-durations

- name: Try newer healpy
run: |
pip install healpy>=1.17.3 --upgrade

- name: Cache data
id: cache-data
uses: actions/cache@v4
Expand All @@ -73,19 +86,13 @@ jobs:
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/rubin_sim_data/throughputs_2023_09_07.tgz | tar -C rubin_sim_data -xz
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/sed_library/seds_170124.tar.gz | tar -C rubin_sim_data/sims_sed_library -xz

- name: Install imSim
run:
pip install .

- name: Install test deps
run:
conda install -y pytest nose pytest-durations pytest-xdist || true

- name: Run tests
run: |
export RUBIN_SIM_DATA_DIR=`pwd`/rubin_sim_data
eups list lsst_distrib
galsim --version
pip list
conda list
pytest --durations=10 -n auto

- name: Check example config files
Expand Down
Loading