Skip to content

Commit

Permalink
fix for variable lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Jul 22, 2022
1 parent 146f1e8 commit cbffd20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ jobs:
if: matrix.dependencies != ''
- run: cd ${{ matrix.package }} && pytest -n auto ${{ matrix.pytest_args }} ${{ matrix.test_directory }}
env:
PYSYN_CDBS: ${{ matrix.HOME }}/trds
CRDS_PATH: ${{ matrix.HOME }}/crds_cache
PYSYN_CDBS: ${{ env.HOME }}/trds
CRDS_PATH: ${{ env.HOME }}/crds_cache
CRDS_SERVER_URL: ${{ matrix.CRDS_SERVER_URL }}
smoke_tests:
name: run `${{ matrix.package }}` smoke tests (Python ${{ matrix.python }}, ${{ matrix.os }})
Expand Down Expand Up @@ -258,8 +258,8 @@ jobs:
- run: conda install -y pytest pytest-xdist
- run: ${{ matrix.run }}
env:
PYSYN_CDBS: ${{ matrix.HOME }}/trds
CRDS_PATH: ${{ matrix.HOME }}/crds_cache
PYSYN_CDBS: ${{ env.HOME }}/trds
CRDS_PATH: ${{ env.HOME }}/crds_cache
CRDS_SERVER_URL: https://hst-crds.stsci.edu
jref: ${{ env.CRDS_PATH }}/${{ matrix.jref }}
export:
Expand Down

0 comments on commit cbffd20

Please sign in to comment.