Skip to content

Commit

Permalink
BUG: env fixes for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
beardymcjohnface committed Jun 22, 2023
1 parent 45f2f85 commit d406ac3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 20 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,13 @@ jobs:
with:
fetch-depth: 0

# # Setup env
# - uses: conda-incubator/setup-miniconda@v2
# with:
# use-mamba: true
# mamba-version: "*"
# channel-priority: false
# activate-environment: koverage
# environment-file: build/environment.yaml
# python-version: ${{ matrix.python-version }}
# auto-activate-base: false
# Setup env
- uses: actions/checkout@v3
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
auto-activate-base: false

- name: "Test and generate coverage report on ${{ matrix.os }} for Python ${{ matrix.python-version }}"
run: |
Expand Down
17 changes: 7 additions & 10 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,13 @@ jobs:
with:
fetch-depth: 0

# # Setup env
# - uses: conda-incubator/setup-miniconda@v2
# with:
# use-mamba: true
# mamba-version: "*"
# channel-priority: false
# activate-environment: koverage
# environment-file: build/environment.yaml
# python-version: ${{ matrix.python-version }}
# auto-activate-base: false
# Setup env
- uses: actions/checkout@v3
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
auto-activate-base: false

- name: "Test and generate coverage report on ${{ matrix.os }} for Python ${{ matrix.python-version }}"
run: |
Expand Down

0 comments on commit d406ac3

Please sign in to comment.