Skip to content

Commit 9654335

Browse files
committed
Update test and deploy.
1 parent 94b9037 commit 9654335

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/code_test_and_deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# macos-14 is M1, macos-13 is intel. Run on earliest and
3333
# latest python versions. All python versions are tested in
3434
# the weekly cron job.
35-
os: [ ubuntu-latest, windows-latest, macos-14, macos-13]
35+
os: [ ubuntu-latest] # , windows-latest, macos-14, macos-13
3636
# Test all Python versions for cron job, and only first/last for other triggers
3737
python-version: ${{ fromJson(github.event_name == 'schedule' && '["3.9", "3.10", "3.11", "3.12", "3.13"]' || '["3.9", "3.13"]') }}
3838

@@ -66,7 +66,7 @@ jobs:
6666
if: runner.os == 'Linux'
6767
run: |
6868
sudo service mysql stop # free up port 3306 for ssh tests
69-
pytest tests/tests_transfers/ssh
69+
pytest --durations=0 tests/tests_transfers/ssh
7070
7171
- name: Test Google Drive
7272
env:
@@ -75,7 +75,7 @@ jobs:
7575
GDRIVE_ROOT_FOLDER_ID: ${{ secrets.GDRIVE_ROOT_FOLDER_ID }}
7676
GDRIVE_CONFIG_TOKEN: ${{ secrets.GDRIVE_CONFIG_TOKEN }}
7777
run: |
78-
pytest tests/tests_transfers/gdrive
78+
pytest --durations=0 tests/tests_transfers/gdrive
7979
8080
- name: Test AWS
8181
env:
@@ -84,11 +84,11 @@ jobs:
8484
AWS_REGION: ${{ secrets.AWS_REGION }}
8585
AWS_BUCKET_NAME: ${{ secrets.AWS_BUCKET_NAME }}
8686
run: |
87-
pytest tests/tests_transfers/aws
87+
pytest --durations=0 tests/tests_transfers/aws
8888
8989
- name: All Other Tests
9090
run: |
91-
pytest --ignore=tests/tests_transfers/ssh --ignore=tests/tests_transfers/gdrive --ignore=tests/tests_transfers/aws
91+
pytest --durations=0 --ignore=tests/tests_transfers/ssh --ignore=tests/tests_transfers/gdrive --ignore=tests/tests_transfers/aws
9292
9393
9494
build_sdist_wheels:

0 commit comments

Comments
 (0)