From e64c6fd773414d84505a9ab817e870c5862072cb Mon Sep 17 00:00:00 2001 From: Nick Huanca Date: Tue, 19 Mar 2019 15:47:46 -0600 Subject: [PATCH] Pytest change (#79) * Pytest change Pipeline is currently broken because nose2 sometimes doesn't load the mock (WAT?) * adding pytest to the install reqs * removing old nose2 requirement * missing mock --- .circleci/config.yml | 4 +--- tests/requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e8e6eb73..e1638e67 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,7 @@ jobs: sudo pip install . reckoner --version sudo pip install -r tests/requirements.txt - nose2 + pytest - setup_remote_docker - run: name: Build Docker Image @@ -84,5 +84,3 @@ workflows: only: /.*/ branches: ignore: /.*/ - - diff --git a/tests/requirements.txt b/tests/requirements.txt index 948b62b6..625bed64 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1 +1,2 @@ -nose2==0.8.0 +pytest +mock