changeset 354:779c67decff6

build: Put dev-only lib requirements into a `dev-requirements.txt` file.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 20 Apr 2015 21:25:06 -0700
parents 8140ff806258
children 28b021be74eb
files .travis.yml dev-requirements.txt requirements.txt
diffstat 3 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/.travis.yml	Fri Apr 17 16:38:00 2015 -0700
+++ b/.travis.yml	Mon Apr 20 21:25:06 2015 -0700
@@ -1,6 +1,8 @@
 language: python
 python:
   - "3.4"
-install: "pip install -r requirements.txt"
+install:
+  - "pip install -r requirements.txt"
+  - "pip install -r dev-requirements.txt"
 script: py.test
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dev-requirements.txt	Mon Apr 20 21:25:06 2015 -0700
@@ -0,0 +1,4 @@
+mock==1.0.1
+pytest==2.6.1
+pytest-mock==0.2.0
+
--- a/requirements.txt	Fri Apr 17 16:38:00 2015 -0700
+++ b/requirements.txt	Mon Apr 20 21:25:06 2015 -0700
@@ -3,15 +3,10 @@
 Jinja2==2.7.3
 Markdown==2.4.1
 MarkupSafe==0.23
-mock==1.0.1
-py==1.4.23
 Pygments==1.6
 pystache==0.5.4
-pytest==2.6.1
-pytest-mock==0.2.0
 python-dateutil==2.2
 PyYAML==3.11
-regex==2014.12.24
 repoze.lru==0.6
 six==1.7.3
 smartypants==1.8.6