From 12ef43e407de2690361fb22261d0eef6a008b000 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 22 Mar 2013 15:52:08 -0400 Subject: [PATCH] /s/make/invoke --- .travis.yml | 5 ++--- docs/dev/todo.rst | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 62a5959..23de425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,10 @@ language: python python: - 2.6 - 2.7 - - 3.2 - 3.3 env: HTTPBIN_URL=http://httpbin.org/ -script: make test +script: invoke test install: - - make test-deps + - pip install -r requirements.txt notifications: email: false diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index ce7e032..a68d470 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -23,8 +23,8 @@ Development Dependencies You'll need to install py.test in order to run the Requests' test suite:: - $ make test-deps - $ make test + $ pip install -r requirements.txt + $ invoke test py.test platform darwin -- Python 2.7.3 -- pytest-2.3.4 collected 25 items -- 2.7.4