mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Problem: we don't have any tests for malicious strings Solution: Use a parameterized test that fuzzes over a library of potentially hazardous strings * Needed to update the Dockerfile to install blns * Removed unnecessary import from Dockerfile-dev * Made the conditions under which the test expects an error more explicit * Improved reporting in case of a bad status code * Removed some over-zealous assertions. * Removed `sent_transaction` from assertation error response * *Problem: blns was removed as a dependency while fixing a merge conflict Solution: added it back to the Dockerfile * *Problem: made a typo when adding blns to the Dockerfile Solution: fixed the typo
9 lines
150 B
Docker
9 lines
150 B
Docker
FROM python:3.6.3
|
|
|
|
RUN mkdir -p /src
|
|
RUN pip install --upgrade \
|
|
pycco \
|
|
websocket-client~=0.47.0 \
|
|
pytest~=3.0 \
|
|
bigchaindb-driver==0.5.0 \
|
|
blns |