Skip to content

Commit

Permalink
BUG: fix env call
Browse files Browse the repository at this point in the history
Fixed the env variable call.
  • Loading branch information
aburrell committed Jun 17, 2022
1 parent 8893b5d commit 85d3796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
python -m pip install -e .
- name: Soft link installed directory to main site packages
run: ln -s apexpy $pythonLocation\lib\python${{ matrix.python-version }}\site-packages\.
run: ln -s apexpy ${{ pythonLocation }}\lib\python${{ matrix.python-version }}\site-packages\.

- name: Run unit and integration tests
run: |
dir apexpy
dir $pythonLocation\lib\python${{ matrix.python-version }}\site-packages
dir ${{ pythonLocation }}\lib\python${{ matrix.python-version }}\site-packages
coverage run --rcfile=setup.cfg -m pytest --cov=apexpy
- name: Publish results to coveralls upon success
Expand Down

0 comments on commit 85d3796

Please sign in to comment.