Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
MetRonnie committed Oct 26, 2023
1 parent efdac11 commit e89007c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test_rsync_test_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,23 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Setup mamba
- name: Setup Conda
if: steps.configure-py.outcome == 'failure'
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: '*'
channels: conda-forge

- name: Mamba info
- name: Conda info
if: steps.configure-py.outcome == 'failure'
run: mamba info
run: |
conda activate test
conda info
- name: Unit Tests
working-directory: rose
run: |
if ${{ steps.configure-py.outcome == 'failure' }}; then
conda activate test
fi
prove -vv t/rose-loc-handlers/test_rsync_loc_handlers.t

0 comments on commit e89007c

Please sign in to comment.