Skip to content

Commit

Permalink
remove workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BradleySappington committed Dec 18, 2024
1 parent 31fa455 commit cfad72e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 41 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,5 @@ jobs:
- name: Check conda info
run: conda info

- name: Run tests with requirements file
if: ${{ contains(matrix.toxenv,'-latest') }}
run: |
cp requirements.txt ${{ runner.temp }}
tox -e ${{ matrix.toxenv }}
- name: Run tests
if: ${{ matrix.continue-on-error == null && contains(matrix.toxenv,'-latest') != true }}
run: tox -e ${{ matrix.toxenv }}

- name: Run tests and allow failures
if: matrix.continue-on-error
continue-on-error: true
- name: Run Sphinx doc build
run: tox -e ${{ matrix.toxenv }}
29 changes: 1 addition & 28 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
[tox]
envlist =
py{310,311,312}-test
envlist = docbuild

isolated_build = true

[testenv]
passenv = *
deps =
pytest
pytest-astropy
conda deps =
scipy
matplotlib
cython
photutils
astroquery
commands=
test: pytest {posargs}

[testenv:docbuild]
passenv= *
deps=
Expand All @@ -34,15 +19,3 @@ conda_deps=
pandoc
commands=
sphinx-build docs docs/_build

[testenv:codestyle]
skip_install = true
description = check package code style
deps =
pycodestyle
commands =
pycodestyle webbpsf

[testenv:flake8]
exclude= .git,__pycache__, test*
max-line-length = 120

0 comments on commit cfad72e

Please sign in to comment.