File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
all_tests :
13
13
runs-on : ubuntu-latest
14
- if : github.event_name == 'pull_request' # todo: put back " push"
14
+ if : github.event_name == 'push
15
15
timeout-minutes : 60
16
16
steps :
17
17
- name : Checkout
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
short_tests :
13
13
runs-on : ubuntu-latest
14
- if : github.event_name == 'push' # todo: return " pull_request"
14
+ if : github.event_name == 'pull_request'
15
15
strategy :
16
16
matrix :
17
17
python-version : ["3.10", "3.11", "3.12"]
33
33
34
34
all_tests :
35
35
runs-on : ubuntu-latest
36
- if : github.event_name == 'pull_request' # todo: return " push"
36
+ if : github.event_name == 'push'
37
37
strategy :
38
38
matrix :
39
39
python-version : ["3.10", "3.11", "3.12"]
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ wandb_login:
57
57
export WANDB_API_KEY=$(WANDB_API_KEY ) ; wandb login
58
58
59
59
.PHONY : run_all_tests
60
- run_all_tests : # wandb_login (todo: return before merge)
60
+ run_all_tests : wandb_login
61
61
export PYTORCH_ENABLE_MPS_FALLBACK=1; export PYTHONPATH=.; pytest --disable-warnings -sv tests
62
62
pytest --disable-warnings --doctest-modules --doctest-continue-on-failure -sv oml
63
63
You can’t perform that action at this time.
0 commit comments