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
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 :
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