Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a few small CI issues #1316

Merged
merged 4 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/macosx_windows_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
python-version: ${{ matrix.python-version }}
environment-file: ci/${{ steps.env_name.outputs.ENV_NAME }}.yml
activate-environment: ${{ steps.env_name.outputs.ENV_NAME }}
run-post: false

- name: Conda Info
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/warning_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ concurrency:
jobs:
warning_test:
env:
ENV_NAME: pyuvdata_warning_test
PYTHON: 3.9
name: Warning Test
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions ci/azure-piplines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
vmImage: "ubuntu-latest"
variables:
PYTHON: "3.9"
ENV_NAME: tests
ENV_NAME: full_deps
WITH_SUDO: true

steps:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
cd ../pyradiosky
pip install --no-deps .
mkdir test-reports
python -m pytest pyradiosky --junitxml=test-reports/xunit.xml
python -m pytest --junitxml=test-reports/xunit.xml
displayName: run pyradiosky tests

- job: pyuvsim
Expand Down
2 changes: 1 addition & 1 deletion scripts/test_cover_noinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ cd $DIR/..
CFLAGS="-DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" pip install -e . --no-deps

cd pyuvdata
python -m pytest --cov=pyuvdata --cov-config=../.coveragerc\
python -m pytest -n auto --cov=pyuvdata --cov-config=../.coveragerc\
--cov-report term --cov-report html:tests/cover \
"$@"