Skip to content

Commit

Permalink
Revert to the default e2e run env var
Browse files Browse the repository at this point in the history
Signed-off-by: erman-gurses <erman@nod-labs.com>
  • Loading branch information
erman-gurses committed Sep 6, 2024
1 parent 378e5a9 commit df6dc93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/kernel/wave/wave_e2e_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
import pytest
import sympy
import os
import torch
import json

_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 1))
_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 0))

require_e2e = pytest.mark.skipif(not _run_e2e, reason="e2e tests are disabled")

Expand Down

0 comments on commit df6dc93

Please sign in to comment.