We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e76f44 commit e235654Copy full SHA for e235654
.github/workflows/test_export_onnx_timm.yml
@@ -2,8 +2,8 @@ name: Exporters ONNX Timm / Python - Test
2
3
on:
4
workflow_dispatch:
5
- push:
6
- branches: [ main ]
+ schedule:
+ - cron: 0 7 * * * # every day at 7am
7
8
concurrency:
9
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -30,5 +30,5 @@ jobs:
30
- name: Test with unittest
31
working-directory: tests
32
run: |
33
- pytest exporters/onnx/test_onnx_*.py -s -n auto -m "timm_test" --durations=0
+ RUN_SLOW=1 pytest exporters/onnx/ -s -n auto -k "timm" --durations=0
34
0 commit comments