Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions decrypt_oracle/test/integration/test_i_decrypt_oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def test_all_vectors(vector):
decrypt_endpoint(),
data=vector.ciphertext,
headers={"Content-Type": "application/octet-stream", "Accept": "application/octet-stream"},
timeout=120 # 2 minutes
)
assert response.status_code == 200
assert response.content == vector.plaintext
4 changes: 2 additions & 2 deletions decrypt_oracle/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ basepython = python3
deps =
-rtest/requirements.txt
{[testenv:generate-pipeline]deps}
pyflakes
pylint
pyflakes==2.5.0
pylint==2.15.0
commands =
pylint \
--rcfile=src/pylintrc \
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
boto3>=1.10.0
cryptography>=2.5.0,<=3.3.2
cryptography>=2.5.0,<37
attrs>=17.4.0
wrapt>=1.10.11