diff options
author | Areli Fuss <af732p@att.com> | 2017-10-19 15:06:08 +0300 |
---|---|---|
committer | Areli Fuss <af732p@att.com> | 2017-10-19 15:06:08 +0300 |
commit | 1280c8e9fdf501f7e733fcd9bf977d85e82350ca (patch) | |
tree | 39fd0373233a8ecf1211711ef4985aae6f540688 | |
parent | 7c9c25ea2adceb67b855b5b54f457290dc5acc5d (diff) |
Update tox and pom
Verify flake8 is running under python 3.6
Update the pom artifact id
Update the pom container path
Change-Id: I31858d5f26c72cfd7c7288d8987fa095daa5507b
Issue-Id: VVP-25
Signed-off-by: Areli Fuss <af732p@att.com>
-rw-r--r-- | pom.xml | 8 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 7 insertions, 5 deletions
@@ -7,8 +7,8 @@ <version>1.0.0-SNAPSHOT</version> </parent> - <groupId>org.openecomp.vvp</groupId> - <artifactId>vvp-image-scanner</artifactId> + <groupId>org.openecomp.vvp.image-scanner</groupId> + <artifactId>image-scanner</artifactId> <packaging>pom</packaging> <version>1.0.0-SNAPSHOT</version> <name>vvp-image-scanner</name> @@ -44,7 +44,7 @@ <configuration> <images> <image> - <name>openecomp/vvp-image-scanner</name> + <name>openecomp/vvp/image-scanner</name> <alias>vvp-image-scanner</alias> <build> <cleanup>true</cleanup> @@ -85,7 +85,7 @@ <goal>push</goal> </goals> <configuration> - <image>openecomp/vvp-image-scanner</image> + <image>openecomp/vvp/image-scanner</image> </configuration> </execution> </executions> @@ -17,7 +17,9 @@ deps = [testenv:style] -commands = python -m flake8 +basepython=python3.6 +commands = python --version + python -m flake8 [testenv:py3] basepython=python3.6 |