Skip to content

Commit

Permalink
remove xdist so we can get output
Browse files Browse the repository at this point in the history
  • Loading branch information
bhazelton committed Nov 26, 2024
1 parent f9ca5d0 commit 01d0a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
command: |
source ./ci/_activate_current_env.sh
mkdir test-reports
python -m pytest -n auto -vv --dist=loadfile --cov=pyuvdata --cov-config=".coveragerc" --cov-report xml:"./coverage.xml" --junitxml="test-reports/xunit.xml"
python -m pytest -v -s --dist=loadfile --cov=pyuvdata --cov-config=".coveragerc" --cov-report xml:"./coverage.xml" --junitxml="test-reports/xunit.xml"
- save_cache:
key: deps-{{ .Branch }}-{{ checksum "ci/pyuvdata_tests.yml" }}
paths:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macosx_windows_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Run Tests
run: |
python -m pytest -vv -n auto --dist=loadfile --cov=pyuvdata --cov-config=.coveragerc --cov-report xml:./coverage.xml
python -m pytest -v -s --dist=loadfile --cov=pyuvdata --cov-config=.coveragerc --cov-report xml:./coverage.xml
- uses: codecov/codecov-action@v4
if: success()
Expand Down

0 comments on commit 01d0a48

Please sign in to comment.