We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ef408 commit a523e59Copy full SHA for a523e59
.travis.yml
@@ -1,13 +1,15 @@
1
language: python
2
+services: docker
3
python:
4
- 3.4
5
- 3.5
6
- 3.6
7
install:
8
- pip --version
9
- pip install -r test-requirements.txt
- - pip install pep8
10
+ - pip install pep8
11
before_script:
12
- pep8 -v *.py VHostScan/
13
script:
14
- pytest
15
+ - docker build -t VHostScan .
Dockerfile
@@ -4,7 +4,7 @@ RUN mkdir /app
ADD . /app
-RUN apt update; apt install -y python3 python3-pip
+RUN apt-get update; apt-get install -y python3 python3-pip
RUN cd /app && pip3 install -r test-requirements.txt && python3 setup.py install
0 commit comments