Skip to content

Commit 0315c95

Browse files
committed
changed the seed to minisec to avoid int 32 bit error in linux
1 parent 26ca6f7 commit 0315c95

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test=pytest
1313

1414
[tool:pytest]
1515
ignore_glob=./splitio/_OLD/*
16-
addopts = --verbose --cov=splitio --cov-report xml -k LocalhostIntegrationTests
16+
addopts = --verbose --cov=splitio --cov-report xml
1717
python_classes=*Tests
1818

1919
[build_sphinx]

tests/integration/test_client_e2e.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,6 @@ def test_localhost_json_e2e(self):
953953

954954
# Tests 2
955955
assert self.factory.manager().split_names() == ["SPLIT_1"]
956-
print(self.factory._storages['splits'].get('SPLIT_1').to_json())
957956
assert client.get_treatment("key", "SPLIT_1") == 'off'
958957

959958
# Tests 1
@@ -1062,13 +1061,10 @@ def test_localhost_json_e2e(self):
10621061
def _update_temp_file(self, json_body):
10631062
f = open(os.path.join(os.path.dirname(__file__), 'files','split_changes_temp.json'), 'w')
10641063
f.write(json.dumps(json_body))
1065-
print(os.path.join(os.path.dirname(__file__), 'files','split_changes_temp.json'))
1066-
print(json.dumps(json_body))
10671064
f.close()
10681065

10691066
def _synchronize_now(self):
10701067
filename = os.path.join(os.path.dirname(__file__), 'files', 'split_changes_temp.json')
1071-
print(filename)
10721068
self.factory._sync_manager._synchronizer._split_synchronizers._split_sync._filename = filename
10731069
self.factory._sync_manager._synchronizer._split_synchronizers._split_sync.synchronize_splits()
10741070

0 commit comments

Comments
 (0)