Skip to content

Commit 49280e3

Browse files
committed
only skip test_convert_txt_slob_2_file_size_approx on 3.14
1 parent c003874 commit 49280e3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: sh ./scripts/test-deps.sh
3737
- name: Run tests
3838
env:
39-
SKIP_SLOB_WRITE_TEST: 1
39+
SKIP_TEST_SLOB_WRITE_FILE_SIZE_APPROX: 1
4040
run: bash scripts/ci/test.sh
4141
- name: Upload test artifacts
4242
if: always()

tests/g_aard2_slob_w_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def test_convert_txt_slob_1(self):
3535
)
3636

3737
def test_convert_txt_slob_2_file_size_approx(self):
38+
if os.getenv("SKIP_TEST_SLOB_WRITE_FILE_SIZE_APPROX"):
39+
print("skipping test_convert_txt_slob_2_file_size_approx")
40+
return
3841
fname = "300-ru-en"
3942
file_size_approx = 25000
4043
files = [

0 commit comments

Comments
 (0)