Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 0489362

Browse files
byronbyronz
authored andcommitted
⬆️ limit the dependency for 3.6+ only
1 parent 9480ad8 commit 0489362

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pandas
22
xlrd
33
flake8
4-
mimesis
4+
memisis;python_version>="3.6"

tests/integration/store/test_store_data.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
import json
23
import hashlib
34
import itertools
@@ -118,6 +119,10 @@ def on_ts(ts, data):
118119
dash_duo.wait_for_text_to_equal("#output", json.dumps(nested_list))
119120

120121

122+
@pytest.mark.skipif(
123+
sys.version_info < (3, 6),
124+
reason="tests requires depedency only available in 3.6+",
125+
)
121126
@pytest.mark.parametrize("storage_type", ("memory", "local", "session"))
122127
def test_stda003_large_data_size(storage_type, csv_5mb, dash_duo):
123128
def fingerprint(data):

0 commit comments

Comments
 (0)