From 61868a60a5290e9ce6cfb259616ee79c8ed13f39 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Mar 27 2018 11:05:28 +0000 Subject: [PATCH 1/2] Replace py-bcrypt by python2-bcrypt Signed-off-by: Clement Verna --- diff --git a/dev/docker/web b/dev/docker/web index 62ec8b9..7e4bab3 100644 --- a/dev/docker/web +++ b/dev/docker/web @@ -4,7 +4,7 @@ MAINTAINER Patrick Uiterwijk VOLUME ["/repos"] RUN mkdir /code -RUN dnf install -y python2-devel python-setuptools python-nose py-bcrypt python-alembic \ +RUN dnf install -y python2-devel python-setuptools python-nose python2-bcrypt python-alembic \ python-arrow python-binaryornot python-bleach python-blinker \ python-chardet python-cryptography python-docutils python-flask \ python-flask-wtf python-flask-multistatic python-markdown python-psutil \ diff --git a/dev/docker/worker b/dev/docker/worker index e0d8042..40bfe15 100644 --- a/dev/docker/worker +++ b/dev/docker/worker @@ -4,7 +4,7 @@ MAINTAINER Patrick Uiterwijk VOLUME ["/repos"] RUN mkdir /code -RUN dnf install -y python2-devel python-setuptools python-nose py-bcrypt python-alembic \ +RUN dnf install -y python2-devel python-setuptools python-nose python2-bcrypt python-alembic \ python-arrow python-binaryornot python-bleach python-blinker \ python-chardet python-cryptography python-docutils python-flask \ python-flask-wtf python-flask-multistatic python-markdown python-psutil \ From 431376341f71bbee5760f619f1fdbef6bf43b709 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Mar 27 2018 11:06:09 +0000 Subject: [PATCH 2/2] Add new test dependencies Signed-off-by: Clement Verna --- diff --git a/dev/run-tests-docker.py b/dev/run-tests-docker.py index e7cd738..170d4bf 100755 --- a/dev/run-tests-docker.py +++ b/dev/run-tests-docker.py @@ -9,12 +9,12 @@ TEMPLATE = 'dev/docker/test_env_template' PKG_LIST = 'python-alembic python-arrow python-binaryornot \ \n'\ 'python-bleach python-blinker python-chardet python-cryptography \ \n'\ 'python-docutils python-enum34 python-flask python2-fedora-flask \ \n'\ - 'python-flask-wtf python-flask-multistatic py-bcrypt python-jinja2 \ \n'\ + 'python-flask-wtf python-flask-multistatic python2-bcrypt python-jinja2 \ \n'\ 'python-markdown python-munch python-openid-cla python-openid-teams \ \n'\ 'python-psutil python-pygit2 python-pygments python2-pillow \ \n'\ 'python-sqlalchemy python-straight-plugin python-wtforms python-nose \ \n'\ 'python-coverage python-mock python-mock python-eventlet python2-flask-oidc \ \n'\ - 'python-flake8 python-celery python-redis python-trollius redis vim git' + 'python-flake8 python-celery python-redis python-trollius python-beautifulsoup4 redis vim git' def setup_parser():