We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c003874 commit 49280e3Copy full SHA for 49280e3
.github/workflows/test-dev.yml
@@ -36,7 +36,7 @@ jobs:
36
run: sh ./scripts/test-deps.sh
37
- name: Run tests
38
env:
39
- SKIP_SLOB_WRITE_TEST: 1
+ SKIP_TEST_SLOB_WRITE_FILE_SIZE_APPROX: 1
40
run: bash scripts/ci/test.sh
41
- name: Upload test artifacts
42
if: always()
tests/g_aard2_slob_w_test.py
@@ -35,6 +35,9 @@ def test_convert_txt_slob_1(self):
35
)
def test_convert_txt_slob_2_file_size_approx(self):
+ if os.getenv("SKIP_TEST_SLOB_WRITE_FILE_SIZE_APPROX"):
+ print("skipping test_convert_txt_slob_2_file_size_approx")
+ return
fname = "300-ru-en"
file_size_approx = 25000
43
files = [
0 commit comments