Skip to content

Commit

Permalink
Updating ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mfixstsci committed Jul 15, 2024
1 parent 075f173 commit eb46ca0
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
max-parallel: 5
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9]
python-version: [3.10, 3.11, 3.12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -28,10 +28,6 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install Package and Test
run: |
cd $RUNNER_WORKSPACE/
cd jwst_backgrounds/
python setup.py install
pytest
run: |
pip install -e .[test] pytest-xdist
pytest -n auto jwst_backgrounds/tests/

0 comments on commit eb46ca0

Please sign in to comment.