Cleanup unused requirements from Omni

Consolidating all python requirements required to run unit tests
in test-requirements.txt. Removed rest of all files.

Change-Id: Ifed7288e2b1d92fb180cb8c722578e9887f6f844
This commit is contained in:
Sanket 2017-09-10 12:00:35 +05:30
parent 4fe87700fd
commit 92ee8cde01
11 changed files with 9 additions and 16 deletions

View File

@ -1 +0,0 @@
google-api-python-client

View File

@ -1 +0,0 @@
boto

View File

@ -1 +0,0 @@
google-api-python-client

View File

@ -1,2 +0,0 @@
google-api-python-client
ipaddr

View File

@ -1 +0,0 @@
boto

View File

@ -1 +0,0 @@
google-api-python-client

View File

@ -1 +0,0 @@
moto

View File

@ -1,8 +1,6 @@
google-api-python-client>=1.4.2 # Apache-2.0
moto>=1.0.1
boto>=2.32.1 # MIT
ipaddr
google_compute_engine
azure-mgmt-resource==1.1.0
azure-mgmt-compute==1.0.0
azure-mgmt-network==1.0.0
azure-mgmt-resource==1.1.0
boto>=2.32.1 # MIT
google-api-python-client>=1.4.2 # Apache-2.0
ipaddr

View File

@ -58,7 +58,8 @@ run_tests() {
project=$1
tests=$2
cd $DIRECTORY/$project
cat $WORKSPACE/omni-requirements.txt >> requirements.txt
cat $WORKSPACE/requirements.txt >> requirements.txt
cat $WORKSPACE/test-requirements.txt >> requirements.txt
tox -epy27 $tests > $DIRECTORY/$project.log
}

1
test-requirements.txt Normal file
View File

@ -0,0 +1 @@
moto>=1.0.1

View File

@ -12,7 +12,8 @@ commands =
./run_tests.sh -wj
[testenv:pep8]
deps = hacking>=0.12.0,<0.13
basepython = python2.7
deps = hacking!=0.13.0,<0.14,>=0.12.0
commands = flake8 {posargs}
[flake8]