From b390bdef2a898d85c2e666a47332ab2854f9aa68 Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Mon, 20 Mar 2017 22:30:48 +0000 Subject: [PATCH] Cleanup Working on the Exercises (#435) Closes #407 --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 836dd059..3067a461 100644 --- a/README.md +++ b/README.md @@ -15,18 +15,19 @@ We welcome both improvements to the existing exercises and new exercises. A pool of exercise ideas can be found in the [x-common repo](https://github.com/exercism/x-common). All exercises must be compatible with Python versions 2.7 and 3.3 upwards. -Therefore please test your changes at least with Python2.7 and Python3.5. +Therefore please test your changes with these versions. -To test a single exercise, say crypto-square, run: +Test a single exercise with Python 2.7: ``` -python2.7 test/check-exercises.py crypto-square -``` -and -``` -python3.5 test/check-exercises.py crypto-square +python2.7 test/check-exercises.py [exercise-name] ``` -To run the tests for all exercises type: +Test a single exercise with Python 3.3: +``` +python3.3 test/check-exercises.py [exercise-name] +``` + +Test all exercises: ``` python test/check-exercises.py ```