Skip to content

Commit eac4adc

Browse files
author
Aleksei Shabanov
committed
reverted tests to the normal state
1 parent ef07bab commit eac4adc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docker_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
all_tests:
1313
runs-on: ubuntu-latest
14-
if: github.event_name == 'pull_request' # todo: put back "push"
14+
if: github.event_name == 'push
1515
timeout-minutes: 60
1616
steps:
1717
- name: Checkout

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
short_tests:
1313
runs-on: ubuntu-latest
14-
if: github.event_name == 'push' # todo: return "pull_request"
14+
if: github.event_name == 'pull_request'
1515
strategy:
1616
matrix:
1717
python-version: ["3.10", "3.11", "3.12"]
@@ -33,7 +33,7 @@ jobs:
3333
3434
all_tests:
3535
runs-on: ubuntu-latest
36-
if: github.event_name == 'pull_request' # todo: return "push"
36+
if: github.event_name == 'push'
3737
strategy:
3838
matrix:
3939
python-version: ["3.10", "3.11", "3.12"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ wandb_login:
5757
export WANDB_API_KEY=$(WANDB_API_KEY); wandb login
5858

5959
.PHONY: run_all_tests
60-
run_all_tests: # wandb_login (todo: return before merge)
60+
run_all_tests: wandb_login
6161
export PYTORCH_ENABLE_MPS_FALLBACK=1; export PYTHONPATH=.; pytest --disable-warnings -sv tests
6262
pytest --disable-warnings --doctest-modules --doctest-continue-on-failure -sv oml
6363

0 commit comments

Comments
 (0)