Created
June 4, 2020 12:13
-
-
Save arajkumar/a479eb92af2fc1331c3f627a6e32c172 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/integration-tests/Dockerfile b/integration-tests/Dockerfile | |
index fea9955..a4af049 100644 | |
--- a/integration-tests/Dockerfile | |
+++ b/integration-tests/Dockerfile | |
@@ -5,12 +5,12 @@ ENV LANG=en_US.UTF-8 \ | |
NOVENV=1 | |
RUN yum install -y epel-release &&\ | |
- yum install -y gcc which python34-pip python34-devel centos-release-openshift-origin36 &&\ | |
+ yum install -y gcc which python36-pip python36-devel centos-release-openshift-origin36 &&\ | |
mkdir -p /tests | |
COPY . /tests | |
RUN pushd /tests &&\ | |
- pip3.4 install -r requirements.txt | |
+ pip3 install -r requirements.txt | |
WORKDIR /tests | |
ENTRYPOINT ["/tests/runtest.sh"] | |
diff --git a/integration-tests/runtest.sh b/integration-tests/runtest.sh | |
index 33ca39c..50051a1 100755 | |
--- a/integration-tests/runtest.sh | |
+++ b/integration-tests/runtest.sh | |
@@ -13,4 +13,4 @@ function prepare_venv() { | |
-PYTHONDONTWRITEBYTECODE=1 python3.4 `which behave` --tags=-skip --tags=-data-sanity -D dump_errors=true @feature_list.txt $@ | |
+PYTHONDONTWRITEBYTECODE=1 python3 `which behave` --tags=-skip --tags=-data-sanity -D dump_errors=true @feature_list.txt $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment