From 79583b564308d5c3d7a66ba5422eafbf90d3daa1 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Sun, 28 Aug 2016 14:26:50 -0400 Subject: [PATCH] Minor doc fix: ``make test`` -> ``make pytest`` The test target changed with the new testing framework. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d700c4ae7..2beaf8d4d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,8 +25,8 @@ adhere to the following rules to make the process as smooth as possible: * Make a new branch for every feature you're working on. * Make small and clean pull requests that are easy to review but make sure they do add value by themselves. -* Add tests for any new functionality and run the test suite (``make test``) to - ensure that no existing features break. +* Add tests for any new functionality and run the test suite (``make pytest``) + to ensure that no existing features break. * This project has a strong focus on providing general solutions using a minimal amount of code, thus small pull requests are greatly preferred.