Skip to content

Commit

Permalink
failing ci runs
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed Jul 26, 2024
1 parent 4ebfa39 commit b4f2b3f
Showing 1 changed file with 42 additions and 7 deletions.
49 changes: 42 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
brew:
- fftw
envs: |
# Mac Arm
#- macos: py311
# runs-on: macos-latest
# Mac Intel
- macos: py311
runs-on: macos-12
Expand Down Expand Up @@ -74,11 +71,49 @@ jobs:
run: |
conda list
cd /tmp
pytest -vvv -r a --pyargs pyflct --cov-report=xml --cov=pyflct --cov-config=$GITHUB_WORKSPACE/setup.cfg $GITHUB_WORKSPACE/docs
- uses: codecov/codecov-action@v4
pytest -vvv -r a --pyargs pyflct
failing_arm:
needs: [core]
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
with:
submodules: false
coverage: codecov
toxdeps: tox-pypi-filter
libraries: |
brew:
- fftw
envs: |
# Mac Arm
- macos: py312
runs-on: macos-latest
# Linux Arm
- linux: py312
runs-on: ubuntu-latest
conda-windows:
needs: [core]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- uses: conda-incubator/setup-miniconda@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
activate-environment: pyflct-test
environment-file: pyflct-env.yml
python-version: 3.12
- name: Install pyflct
shell: bash -el {0}
run: |
pip install --no-deps --no-build-isolation .
- name: Run tests
shell: bash -el {0}
run: |
conda list
cd /tmp
pytest -vvv -r a --pyargs pyflct
docs:
needs: [core]
Expand Down

0 comments on commit b4f2b3f

Please sign in to comment.