Skip to content

Commit cb9268b

Browse files
committed
upd
1 parent 66d3e56 commit cb9268b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ on:
1111
jobs:
1212
short_tests:
1313
runs-on: ubuntu-latest
14-
# todo: put back 'pull_request'
15-
if: github.event_name == 'push'
14+
if: github.event_name == 'pull_request'
1615
strategy:
1716
matrix:
1817
python-version: ["3.8", "3.9", "3.10", "3.11"]
@@ -34,8 +33,7 @@ jobs:
3433
3534
all_tests:
3635
runs-on: ubuntu-latest
37-
# todo put back 'push'
38-
if: github.event_name == 'pull_request'
36+
if: github.event_name == 'push'
3937
strategy:
4038
matrix:
4139
python-version: ["3.8", "3.9", "3.10", "3.11"]
@@ -53,10 +51,9 @@ jobs:
5351
python3 -m pip install -r ci/requirements_optional.txt
5452
python3 -m pip install -e .
5553
- name: Running all tests
56-
# todo
5754
run: |
5855
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
6057
else
6158
make run_all_tests WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }}
6259
fi

0 commit comments

Comments
 (0)