Skip to content

Commit 47f39fb

Browse files
committed
batch1 only
1 parent fe0bf2b commit 47f39fb

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

e2e_batch/test_e2e_batch_create.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@
1414
SOURCE_BUCKET,
1515
INPUT_PREFIX,
1616
ACK_BUCKET,
17-
environment
17+
# environment
1818
)
1919
from e2e_batch_base import TestE2EBatchBase
2020

2121

22-
@unittest.skipIf(environment == "ref", "if ref")
22+
@unittest.skip("Skip all tests")
23+
# @unittest.skipIf(environment == "ref", "if ref")
2324
class TestE2EBatchCreate(TestE2EBatchBase):
2425

2526
def test_create_success(self):

e2e_batch/test_e2e_batch_ref.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
from constants import (
1212
SOURCE_BUCKET,
1313
INPUT_PREFIX,
14-
environment
14+
# environment
1515
)
1616
from e2e_batch_base import TestE2EBatchBase
1717

1818

19-
@unittest.skipIf(environment != "ref", "if not ref")
19+
@unittest.skip("Skip all tests")
20+
# @unittest.skipIf(environment != "ref", "if not ref")
2021
class TestE2EBatchRef(TestE2EBatchBase):
2122

2223
def test_end_to_end_speed_test_with_100000_rows(self):

e2e_batch/test_e2e_batch_validation.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919
PRE_VALIDATION_ERROR,
2020
POST_VALIDATION_ERROR,
2121
FILE_NAME_VAL_ERROR,
22-
environment
22+
# environment
2323
)
2424
from e2e_batch_base import TestE2EBatchBase
2525

2626

27-
@unittest.skipIf(environment == "ref", "if ref")
27+
@unittest.skip("Skip all tests")
28+
# @unittest.skipIf(environment == "ref", "if ref")
2829
class TestE2EBatchValidation(TestE2EBatchBase):
2930

3031
def test_pre_validation_error(self):

0 commit comments

Comments
 (0)