-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from e-koch/shape_check_fix
Shape check fix and tests fix with version updates
- Loading branch information
Showing
5 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,14 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
python-version: "3.10" | ||
name: Python 3.10 with minimal dependencies | ||
toxenv: py310-test | ||
- os: ubuntu-latest | ||
python-version: 3.11 | ||
name: Python 3.11 with minimal dependencies | ||
toxenv: py311-test | ||
- os: ubuntu-latest | ||
python-version: 3.9 | ||
name: Python 3.9 with minimal dependencies | ||
|
@@ -42,9 +50,15 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install testing dependencies | ||
run: python -m pip install tox codecov | ||
run: | | ||
python -m pip install tox codecov | ||
mkdir ${GITHUB_WORKSPACE}/.casa | ||
echo "datapath=['${GITHUB_WORKSPACE}/.casa/']; measurespath=datapath[0]; measures_auto_update=True; data_auto_update=True" > $GITHUB_WORKSPACE/config.py | ||
pip install casadata | ||
export CASASITECONFIG=$GITHUB_WORKSPACE/config.py | ||
- name: Run tests with ${{ matrix.name }} | ||
run: tox -v -e ${{ matrix.toxenv }} | ||
run: CASASITECONFIG=$GITHUB_WORKSPACE/config.py tox -v -e ${{ matrix.toxenv }} | ||
- name: Upload coverage to codecov | ||
if: ${{ contains(matrix.toxenv,'-cov') }} | ||
uses: codecov/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters