diff --git a/.travis.yml b/.travis.yml index fc69fd75712..e99e95f2eae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,9 @@ python: - "2.7" - "3.5" install: - - pip install azure==2.0.0a1 - - pip install mock==1.3.0 - - pip install pylint==1.5.4 + - pip install -r requirements.txt script: - export PYTHONPATH=$PATHONPATH:./src - python -m azure.cli - pylint src/azure - - python -m unittest discover -s src/azure/cli/tests \ No newline at end of file + - python -m unittest discover -s src/azure/cli/tests diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000000..f59fa6d46c6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +azure==2.0.0a1 +mock==1.3.0 +pylint==1.5.4