File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
short_tests :
13
13
runs-on : ubuntu-latest
14
- # todo: put back 'pull_request'
15
- if : github.event_name == 'push'
14
+ if : github.event_name == 'pull_request'
16
15
strategy :
17
16
matrix :
18
17
python-version : ["3.8", "3.9", "3.10", "3.11"]
34
33
35
34
all_tests :
36
35
runs-on : ubuntu-latest
37
- # todo put back 'push'
38
- if : github.event_name == 'pull_request'
36
+ if : github.event_name == 'push'
39
37
strategy :
40
38
matrix :
41
39
python-version : ["3.8", "3.9", "3.10", "3.11"]
53
51
python3 -m pip install -r ci/requirements_optional.txt
54
52
python3 -m pip install -e .
55
53
- name : Running all tests
56
- # todo
57
54
run : |
58
55
if [ "${{ matrix.python-version }}" == "3.8" ]; then
59
- make run_all_tests WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }} DOWNLOAD_ZOO_IN_TESTS=no TEST_CLOUD_LOGGERS=yes
56
+ make run_all_tests WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }} DOWNLOAD_ZOO_IN_TESTS=yes TEST_CLOUD_LOGGERS=yes
60
57
else
61
58
make run_all_tests WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }}
62
59
fi
You can’t perform that action at this time.
0 commit comments