diff --git a/.travis.yml b/.travis.yml index fd07657e..a6e67a1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,7 @@ language: python python: - 3.6 install: - - pip install -r requirements.txt - - pip install codecov + - pip install -r requirements-dev.txt codecov script: - pytest --cov=pythonpro after_success: diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 00000000..da518446 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,5 @@ +-r requirements.txt +coverage==4.4.1 +pytest==3.2.3 +pytest-cov==2.5.1 +pytest-django==3.1.2 diff --git a/requirements.txt b/requirements.txt index b9a3bc73..48d68125 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,2 @@ -coverage==4.4.1 Django==2.0b1 -pytest==3.2.3 -pytest-cov==2.5.1 -pytest-django==3.1.2 pytz==2017.2