File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,19 +19,12 @@ jobs:
1919 python-version : " 3.14"
2020 architecture : x86
2121
22- - name : Create test file
22+ - name : Install dependencies
2323 run : |
24- echo 'import pytest' > test_bug.py
25- echo '' >> test_bug.py
26- echo '@pytest.mark.parametrize("value", [' >> test_bug.py
27- echo ' "\U00010002abc",' >> test_bug.py
28- echo ' "abc\u79d8\u5bc6\u4ee3\u7801",' >> test_bug.py
29- echo '])' >> test_bug.py
30- echo 'def test_unicode(value):' >> test_bug.py
31- echo ' assert len(value) > 0' >> test_bug.py
24+ python -m pip install --upgrade pip
25+ pip install --upgrade -r dev_requirements/ci-requirements.txt
3226
33- - name : Install pytest
34- run : pip install pytest==8.0.0 pytest-cov==4.0.0 pytest-mock==3.6.1
35-
36- - name : Run test (will crash)
37- run : pytest test_bug.py -vv
27+ - name : Run actual failing test
28+ env :
29+ TOXENV : local
30+ run : tox -- --tb=short test/unit/test_serialize.py::TestSerialize::test_GIVEN_two_distinct_valid_encrypted_data_keys_WHEN_serialize_encrypted_data_keys_THEN_deserialize_equals_inputs -vv
You can’t perform that action at this time.
0 commit comments