trackler 2.2.1.151 → 2.2.1.152

Sign up to get free protection for your applications and to get access to all the features.
Files changed (340) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/hamming/description.md +4 -3
  4. data/problem-specifications/exercises/isbn-verifier/canonical-data.json +9 -1
  5. data/tracks/clojure/exercises/bob/README.md +2 -0
  6. data/tracks/clojure/exercises/bob/src/example.clj +4 -0
  7. data/tracks/clojure/exercises/bob/test/bob_test.clj +1 -1
  8. data/tracks/clojure/exercises/say/README.md +2 -1
  9. data/tracks/csharp/exercises/acronym/AcronymTest.cs +3 -9
  10. data/tracks/csharp/exercises/all-your-base/AllYourBaseTest.cs +43 -43
  11. data/tracks/csharp/exercises/allergies/AllergiesTest.cs +1 -1
  12. data/tracks/csharp/exercises/alphametics/AlphameticsTest.cs +21 -1
  13. data/tracks/csharp/exercises/anagram/AnagramTest.cs +1 -35
  14. data/tracks/csharp/exercises/atbash-cipher/AtbashCipherTest.cs +1 -1
  15. data/tracks/csharp/exercises/beer-song/BeerSong.cs +1 -6
  16. data/tracks/csharp/exercises/beer-song/BeerSongTest.cs +20 -28
  17. data/tracks/csharp/exercises/beer-song/Example.cs +6 -6
  18. data/tracks/csharp/exercises/binary-search/BinarySearchTest.cs +1 -1
  19. data/tracks/csharp/exercises/bob/BobTest.cs +1 -1
  20. data/tracks/csharp/exercises/book-store/BookStoreTest.cs +1 -1
  21. data/tracks/csharp/exercises/bowling/BowlingTest.cs +47 -29
  22. data/tracks/csharp/exercises/bracket-push/BracketPushTest.cs +36 -29
  23. data/tracks/csharp/exercises/change/Change.cs +1 -1
  24. data/tracks/csharp/exercises/change/ChangeTest.cs +48 -21
  25. data/tracks/csharp/exercises/change/Example.cs +31 -18
  26. data/tracks/csharp/exercises/circular-buffer/CircularBuffer.cs +2 -2
  27. data/tracks/csharp/exercises/circular-buffer/CircularBufferTest.cs +88 -111
  28. data/tracks/csharp/exercises/circular-buffer/Example.cs +7 -7
  29. data/tracks/csharp/exercises/clock/ClockTest.cs +37 -37
  30. data/tracks/csharp/exercises/collatz-conjecture/CollatzConjectureTest.cs +1 -1
  31. data/tracks/csharp/exercises/complex-numbers/ComplexNumbersTest.cs +19 -10
  32. data/tracks/csharp/exercises/connect/ConnectTest.cs +1 -1
  33. data/tracks/csharp/exercises/crypto-square/CryptoSquareTest.cs +1 -1
  34. data/tracks/csharp/exercises/custom-set/.meta/hints.md +3 -3
  35. data/tracks/csharp/exercises/custom-set/CustomSet.cs +10 -49
  36. data/tracks/csharp/exercises/custom-set/CustomSetTest.cs +153 -157
  37. data/tracks/csharp/exercises/custom-set/Example.cs +26 -54
  38. data/tracks/csharp/exercises/difference-of-squares/DifferenceOfSquaresTest.cs +1 -1
  39. data/tracks/csharp/exercises/dominoes/DominoesTest.cs +25 -25
  40. data/tracks/csharp/exercises/etl/Etl.cs +1 -1
  41. data/tracks/csharp/exercises/etl/EtlTest.cs +4 -4
  42. data/tracks/csharp/exercises/etl/Example.cs +1 -1
  43. data/tracks/csharp/exercises/flatten-array/FlattenArrayTest.cs +13 -13
  44. data/tracks/csharp/exercises/food-chain/Example.cs +5 -0
  45. data/tracks/csharp/exercises/food-chain/FoodChain.cs +5 -0
  46. data/tracks/csharp/exercises/food-chain/FoodChainTest.cs +9 -9
  47. data/tracks/csharp/exercises/forth/Example.cs +28 -33
  48. data/tracks/csharp/exercises/forth/Forth.cs +1 -19
  49. data/tracks/csharp/exercises/forth/ForthTest.cs +215 -52
  50. data/tracks/csharp/exercises/gigasecond/GigasecondTest.cs +1 -1
  51. data/tracks/csharp/exercises/grains/GrainsTest.cs +1 -1
  52. data/tracks/csharp/exercises/grep/Example.cs +1 -1
  53. data/tracks/csharp/exercises/grep/Grep.cs +1 -1
  54. data/tracks/csharp/exercises/grep/GrepTest.cs +268 -237
  55. data/tracks/csharp/exercises/hamming/HammingTest.cs +1 -1
  56. data/tracks/csharp/exercises/hello-world/HelloWorldTest.cs +1 -1
  57. data/tracks/csharp/exercises/house/Example.cs +7 -2
  58. data/tracks/csharp/exercises/house/House.cs +5 -0
  59. data/tracks/csharp/exercises/house/HouseTest.cs +40 -223
  60. data/tracks/csharp/exercises/isbn-verifier/IsbnVerifierTest.cs +14 -2
  61. data/tracks/csharp/exercises/isogram/IsogramTest.cs +1 -1
  62. data/tracks/csharp/exercises/kindergarten-garden/KindergartenGardenTest.cs +1 -1
  63. data/tracks/csharp/exercises/largest-series-product/LargestSeriesProductTest.cs +1 -1
  64. data/tracks/csharp/exercises/leap/LeapTest.cs +1 -1
  65. data/tracks/csharp/exercises/luhn/LuhnTest.cs +1 -1
  66. data/tracks/csharp/exercises/markdown/MarkdownTest.cs +34 -27
  67. data/tracks/csharp/exercises/minesweeper/MinesweeperTest.cs +29 -34
  68. data/tracks/csharp/exercises/nth-prime/NthPrimeTest.cs +1 -1
  69. data/tracks/csharp/exercises/nucleotide-count/NucleotideCountTest.cs +1 -1
  70. data/tracks/csharp/exercises/ocr-numbers/OcrNumbersTest.cs +35 -35
  71. data/tracks/csharp/exercises/pangram/PangramTest.cs +1 -1
  72. data/tracks/csharp/exercises/pascals-triangle/PascalsTriangleTest.cs +1 -1
  73. data/tracks/csharp/exercises/perfect-numbers/PerfectNumbersTest.cs +1 -1
  74. data/tracks/csharp/exercises/phone-number/PhoneNumberTest.cs +17 -3
  75. data/tracks/csharp/exercises/pig-latin/PigLatinTest.cs +1 -1
  76. data/tracks/csharp/exercises/poker/PokerTest.cs +1 -1
  77. data/tracks/csharp/exercises/prime-factors/PrimeFactorsTest.cs +1 -1
  78. data/tracks/csharp/exercises/protein-translation/Example.cs +4 -4
  79. data/tracks/csharp/exercises/protein-translation/ProteinTranslation.cs +1 -1
  80. data/tracks/csharp/exercises/protein-translation/ProteinTranslationTest.cs +104 -45
  81. data/tracks/csharp/exercises/proverb/ProverbTest.cs +38 -6
  82. data/tracks/csharp/exercises/queen-attack/QueenAttackTest.cs +1 -1
  83. data/tracks/csharp/exercises/rail-fence-cipher/RailFenceCipherTest.cs +1 -1
  84. data/tracks/csharp/exercises/raindrops/RaindropsTest.cs +1 -1
  85. data/tracks/csharp/exercises/rectangles/RectanglesTest.cs +63 -21
  86. data/tracks/csharp/exercises/reverse-string/ReverseStringTest.cs +1 -1
  87. data/tracks/csharp/exercises/rna-transcription/RnaTranscriptionTest.cs +1 -1
  88. data/tracks/csharp/exercises/roman-numerals/RomanNumeralsTest.cs +7 -1
  89. data/tracks/csharp/exercises/rotational-cipher/RotationalCipherTest.cs +1 -1
  90. data/tracks/csharp/exercises/run-length-encoding/RunLengthEncodingTest.cs +1 -1
  91. data/tracks/csharp/exercises/saddle-points/SaddlePointsTest.cs +11 -11
  92. data/tracks/csharp/exercises/say/SayTest.cs +1 -1
  93. data/tracks/csharp/exercises/scale-generator/Example.cs +5 -0
  94. data/tracks/csharp/exercises/scale-generator/ScaleGenerator.cs +5 -0
  95. data/tracks/csharp/exercises/scale-generator/ScaleGeneratorTest.cs +56 -47
  96. data/tracks/csharp/exercises/scrabble-score/ScrabbleScoreTest.cs +1 -1
  97. data/tracks/csharp/exercises/secret-handshake/SecretHandshakeTest.cs +1 -1
  98. data/tracks/csharp/exercises/sieve/SieveTest.cs +1 -1
  99. data/tracks/csharp/exercises/space-age/SpaceAgeTest.cs +1 -1
  100. data/tracks/csharp/exercises/spiral-matrix/SpiralMatrixTest.cs +28 -34
  101. data/tracks/csharp/exercises/sum-of-multiples/SumOfMultiplesTest.cs +1 -1
  102. data/tracks/csharp/exercises/tournament/Example.cs +15 -7
  103. data/tracks/csharp/exercises/tournament/TournamentTest.cs +97 -99
  104. data/tracks/csharp/exercises/transpose/TransposeTest.cs +50 -96
  105. data/tracks/csharp/exercises/triangle/TriangleTest.cs +1 -1
  106. data/tracks/csharp/exercises/twelve-days/TwelveDays.cs +1 -1
  107. data/tracks/csharp/exercises/two-bucket/TwoBucketTest.cs +1 -1
  108. data/tracks/csharp/exercises/two-fer/TwoFerTest.cs +1 -1
  109. data/tracks/csharp/exercises/variable-length-quantity/Example.cs +3 -3
  110. data/tracks/csharp/exercises/variable-length-quantity/VariableLengthQuantity.cs +2 -2
  111. data/tracks/csharp/exercises/variable-length-quantity/VariableLengthQuantityTest.cs +165 -40
  112. data/tracks/csharp/exercises/word-count/Example.cs +1 -1
  113. data/tracks/csharp/exercises/word-count/WordCount.cs +1 -1
  114. data/tracks/csharp/exercises/word-count/WordCountTest.cs +12 -12
  115. data/tracks/csharp/exercises/wordy/WordyTest.cs +1 -1
  116. data/tracks/csharp/exercises/yacht/Example.cs +2 -5
  117. data/tracks/csharp/exercises/yacht/YachtTest.cs +7 -1
  118. data/tracks/csharp/exercises/zebra-puzzle/Example.cs +4 -4
  119. data/tracks/csharp/exercises/zebra-puzzle/ZebraPuzzle.cs +2 -2
  120. data/tracks/csharp/exercises/zebra-puzzle/ZebraPuzzleTest.cs +7 -5
  121. data/tracks/csharp/generators/Exercises/AllYourBase.cs +1 -0
  122. data/tracks/csharp/generators/Exercises/Alphametics.cs +5 -2
  123. data/tracks/csharp/generators/Exercises/BeerSong.cs +3 -0
  124. data/tracks/csharp/generators/Exercises/BinarySearch.cs +1 -0
  125. data/tracks/csharp/generators/Exercises/BookStore.cs +2 -0
  126. data/tracks/csharp/generators/Exercises/Bowling.cs +20 -15
  127. data/tracks/csharp/generators/Exercises/BracketPush.cs +1 -1
  128. data/tracks/csharp/generators/Exercises/Change.cs +20 -0
  129. data/tracks/csharp/generators/Exercises/CircularBuffer.cs +74 -0
  130. data/tracks/csharp/generators/Exercises/Clock.cs +7 -8
  131. data/tracks/csharp/generators/Exercises/ComplexNumbers.cs +9 -16
  132. data/tracks/csharp/generators/Exercises/Connect.cs +6 -6
  133. data/tracks/csharp/generators/Exercises/CustomSet.cs +56 -0
  134. data/tracks/csharp/generators/Exercises/Dominoes.cs +2 -2
  135. data/tracks/csharp/generators/Exercises/Etl.cs +7 -35
  136. data/tracks/csharp/generators/Exercises/FlattenArray.cs +9 -13
  137. data/tracks/csharp/generators/Exercises/FoodChain.cs +5 -0
  138. data/tracks/csharp/generators/Exercises/Forth.cs +25 -0
  139. data/tracks/csharp/generators/Exercises/Gigasecond.cs +4 -4
  140. data/tracks/csharp/generators/Exercises/Grains.cs +1 -1
  141. data/tracks/csharp/generators/Exercises/Grep.cs +106 -0
  142. data/tracks/csharp/generators/Exercises/Hamming.cs +1 -1
  143. data/tracks/csharp/generators/Exercises/House.cs +5 -0
  144. data/tracks/csharp/generators/Exercises/KindergartenGarden.cs +3 -3
  145. data/tracks/csharp/generators/Exercises/Markdown.cs +25 -0
  146. data/tracks/csharp/generators/Exercises/Meetup.cs +6 -6
  147. data/tracks/csharp/generators/Exercises/Minesweeper.cs +14 -4
  148. data/tracks/csharp/generators/Exercises/OcrNumbers.cs +12 -3
  149. data/tracks/csharp/generators/Exercises/PascalsTriangle.cs +0 -7
  150. data/tracks/csharp/generators/Exercises/ProteinTranslation.cs +8 -0
  151. data/tracks/csharp/generators/Exercises/Proverb.cs +7 -5
  152. data/tracks/csharp/generators/Exercises/QueenAttack.cs +3 -3
  153. data/tracks/csharp/generators/Exercises/Rectangles.cs +17 -0
  154. data/tracks/csharp/generators/Exercises/RobotSimulator.cs +6 -6
  155. data/tracks/csharp/generators/Exercises/SaddlePoints.cs +2 -2
  156. data/tracks/csharp/generators/Exercises/Say.cs +1 -1
  157. data/tracks/csharp/generators/Exercises/ScaleGenerator.cs +15 -0
  158. data/tracks/csharp/generators/Exercises/SpiralMatrix.cs +45 -0
  159. data/tracks/csharp/generators/Exercises/Sublist.cs +4 -5
  160. data/tracks/csharp/generators/Exercises/SumOfMultiples.cs +10 -1
  161. data/tracks/csharp/generators/Exercises/Tournament.cs +11 -19
  162. data/tracks/csharp/generators/Exercises/Transpose.cs +2 -2
  163. data/tracks/csharp/generators/Exercises/Triangle.cs +1 -3
  164. data/tracks/csharp/generators/Exercises/TwelveDays.cs +3 -4
  165. data/tracks/csharp/generators/Exercises/TwoBucket.cs +5 -5
  166. data/tracks/csharp/generators/Exercises/TwoFer.cs +11 -2
  167. data/tracks/csharp/generators/Exercises/VariableLengthQuantity.cs +44 -0
  168. data/tracks/csharp/generators/Exercises/Yacht.cs +11 -10
  169. data/tracks/csharp/generators/Exercises/ZebraPuzzle.cs +19 -0
  170. data/tracks/csharp/generators/GeneratorExercise.cs +6 -6
  171. data/tracks/csharp/generators/Input/CanonicalData.cs +6 -9
  172. data/tracks/csharp/generators/Input/CanonicalDataCase.cs +13 -46
  173. data/tracks/csharp/generators/Input/CanonicalDataCaseParser.cs +170 -0
  174. data/tracks/csharp/generators/Input/CanonicalDataFile.cs +1 -2
  175. data/tracks/csharp/generators/Input/CanonicalDataParser.cs +16 -12
  176. data/tracks/csharp/generators/Input/ConfigFile.cs +0 -5
  177. data/tracks/csharp/generators/Input/ConvertHelper.cs +20 -0
  178. data/tracks/csharp/generators/Output/Templates/_TestClassDisposable.liquid +14 -0
  179. data/tracks/csharp/generators/Output/TestMethodBodyData.cs +11 -14
  180. data/tracks/csharp/generators/Output/ValueFormatter.cs +20 -7
  181. data/tracks/delphi/config.json +22 -0
  182. data/tracks/delphi/exercises/grade-school/GradeSchool.dpr +60 -0
  183. data/tracks/delphi/exercises/grade-school/README.md +62 -0
  184. data/tracks/delphi/exercises/grade-school/uGradeSchoolExample.pas +134 -0
  185. data/tracks/delphi/exercises/grade-school/uGradeSchoolTest.pas +150 -0
  186. data/tracks/delphi/exercises/hamming/README.md +4 -3
  187. data/tracks/delphi/exercises/proverb/Proverb.dpr +60 -0
  188. data/tracks/delphi/exercises/proverb/README.md +44 -0
  189. data/tracks/delphi/exercises/proverb/uProverbExample.pas +60 -0
  190. data/tracks/delphi/exercises/proverb/uProverbTests.pas +124 -0
  191. data/tracks/go/exercises/bracket-push/README.md +3 -2
  192. data/tracks/go/exercises/bracket-push/cases_test.go +7 -2
  193. data/tracks/go/exercises/isbn-verifier/cases_test.go +4 -3
  194. data/tracks/go/exercises/yacht/cases_test.go +8 -2
  195. data/tracks/java/exercises/armstrong-numbers/README.md +1 -1
  196. data/tracks/java/exercises/binary-search-tree/src/test/java/BinarySearchTreeTest.java +22 -22
  197. data/tracks/java/exercises/bracket-push/README.md +3 -2
  198. data/tracks/java/exercises/crypto-square/README.md +23 -19
  199. data/tracks/java/exercises/grade-school/src/test/java/SchoolTest.java +1 -1
  200. data/tracks/java/exercises/poker/.meta/{version.txt → version} +0 -0
  201. data/tracks/java/exercises/queen-attack/src/test/java/QueenAttackCalculatorTest.java +7 -7
  202. data/tracks/java/exercises/rail-fence-cipher/.meta/version +1 -0
  203. data/tracks/java/exercises/robot-simulator/src/test/java/RobotTest.java +45 -45
  204. data/tracks/nim/config.json +24 -0
  205. data/tracks/nim/exercises/armstrong-numbers/README.md +18 -0
  206. data/tracks/nim/exercises/armstrong-numbers/armstrong_number_test.nim +29 -0
  207. data/tracks/nim/exercises/armstrong-numbers/example.nim +11 -0
  208. data/tracks/nim/exercises/leap/leap_test.nim +12 -10
  209. data/tracks/nim/exercises/two-fer/README.md +19 -0
  210. data/tracks/nim/exercises/two-fer/example.nim +3 -0
  211. data/tracks/nim/exercises/two-fer/two_fer_test.nim +16 -0
  212. data/tracks/python/.travis.yml +0 -1
  213. data/tracks/python/README.md +1 -1
  214. data/tracks/python/config/exercise_readme.go.tmpl +1 -1
  215. data/tracks/python/docs/INSTALLATION.md +1 -1
  216. data/tracks/python/exercises/accumulate/README.md +1 -1
  217. data/tracks/python/exercises/acronym/README.md +1 -1
  218. data/tracks/python/exercises/all-your-base/README.md +1 -1
  219. data/tracks/python/exercises/allergies/README.md +1 -1
  220. data/tracks/python/exercises/alphametics/README.md +1 -1
  221. data/tracks/python/exercises/anagram/README.md +1 -1
  222. data/tracks/python/exercises/armstrong-numbers/README.md +2 -2
  223. data/tracks/python/exercises/atbash-cipher/README.md +1 -1
  224. data/tracks/python/exercises/bank-account/README.md +1 -1
  225. data/tracks/python/exercises/beer-song/README.md +1 -1
  226. data/tracks/python/exercises/binary-search-tree/README.md +1 -1
  227. data/tracks/python/exercises/binary-search/README.md +1 -1
  228. data/tracks/python/exercises/binary/README.md +1 -1
  229. data/tracks/python/exercises/bob/README.md +1 -1
  230. data/tracks/python/exercises/book-store/README.md +1 -1
  231. data/tracks/python/exercises/bowling/README.md +1 -1
  232. data/tracks/python/exercises/bracket-push/README.md +4 -3
  233. data/tracks/python/exercises/change/README.md +1 -1
  234. data/tracks/python/exercises/circular-buffer/README.md +1 -1
  235. data/tracks/python/exercises/clock/README.md +1 -1
  236. data/tracks/python/exercises/collatz-conjecture/README.md +1 -1
  237. data/tracks/python/exercises/complex-numbers/README.md +1 -1
  238. data/tracks/python/exercises/connect/README.md +1 -1
  239. data/tracks/python/exercises/crypto-square/README.md +1 -1
  240. data/tracks/python/exercises/custom-set/README.md +1 -1
  241. data/tracks/python/exercises/diamond/README.md +1 -1
  242. data/tracks/python/exercises/difference-of-squares/README.md +1 -1
  243. data/tracks/python/exercises/diffie-hellman/README.md +1 -1
  244. data/tracks/python/exercises/dominoes/README.md +1 -1
  245. data/tracks/python/exercises/dot-dsl/README.md +1 -1
  246. data/tracks/python/exercises/error-handling/README.md +1 -1
  247. data/tracks/python/exercises/etl/README.md +1 -1
  248. data/tracks/python/exercises/flatten-array/README.md +1 -1
  249. data/tracks/python/exercises/food-chain/README.md +1 -1
  250. data/tracks/python/exercises/forth/README.md +1 -1
  251. data/tracks/python/exercises/gigasecond/README.md +1 -1
  252. data/tracks/python/exercises/go-counting/README.md +1 -1
  253. data/tracks/python/exercises/grade-school/README.md +1 -1
  254. data/tracks/python/exercises/grains/README.md +1 -1
  255. data/tracks/python/exercises/grep/README.md +1 -1
  256. data/tracks/python/exercises/hamming/README.md +1 -1
  257. data/tracks/python/exercises/hello-world/README.md +1 -1
  258. data/tracks/python/exercises/hexadecimal/README.md +1 -1
  259. data/tracks/python/exercises/house/README.md +1 -1
  260. data/tracks/python/exercises/isbn-verifier/README.md +1 -1
  261. data/tracks/python/exercises/isogram/README.md +1 -1
  262. data/tracks/python/exercises/kindergarten-garden/README.md +1 -1
  263. data/tracks/python/exercises/largest-series-product/README.md +1 -1
  264. data/tracks/python/exercises/leap/README.md +1 -1
  265. data/tracks/python/exercises/linked-list/README.md +1 -1
  266. data/tracks/python/exercises/list-ops/README.md +1 -1
  267. data/tracks/python/exercises/luhn/README.md +1 -1
  268. data/tracks/python/exercises/markdown/README.md +1 -1
  269. data/tracks/python/exercises/matrix/README.md +1 -1
  270. data/tracks/python/exercises/meetup/README.md +1 -1
  271. data/tracks/python/exercises/minesweeper/README.md +1 -1
  272. data/tracks/python/exercises/nth-prime/README.md +1 -1
  273. data/tracks/python/exercises/nucleotide-count/README.md +1 -1
  274. data/tracks/python/exercises/ocr-numbers/README.md +1 -1
  275. data/tracks/python/exercises/octal/README.md +1 -1
  276. data/tracks/python/exercises/palindrome-products/README.md +1 -1
  277. data/tracks/python/exercises/pangram/README.md +1 -1
  278. data/tracks/python/exercises/parallel-letter-frequency/README.md +1 -1
  279. data/tracks/python/exercises/pascals-triangle/README.md +1 -1
  280. data/tracks/python/exercises/perfect-numbers/README.md +1 -1
  281. data/tracks/python/exercises/phone-number/README.md +1 -1
  282. data/tracks/python/exercises/pig-latin/README.md +1 -1
  283. data/tracks/python/exercises/point-mutations/README.md +1 -1
  284. data/tracks/python/exercises/poker/README.md +1 -1
  285. data/tracks/python/exercises/pov/README.md +1 -1
  286. data/tracks/python/exercises/prime-factors/README.md +1 -1
  287. data/tracks/python/exercises/protein-translation/README.md +1 -1
  288. data/tracks/python/exercises/proverb/README.md +1 -1
  289. data/tracks/python/exercises/pythagorean-triplet/README.md +1 -1
  290. data/tracks/python/exercises/queen-attack/README.md +1 -1
  291. data/tracks/python/exercises/rail-fence-cipher/README.md +1 -1
  292. data/tracks/python/exercises/raindrops/README.md +1 -1
  293. data/tracks/python/exercises/rational-numbers/README.md +1 -1
  294. data/tracks/python/exercises/react/README.md +1 -1
  295. data/tracks/python/exercises/rectangles/README.md +1 -1
  296. data/tracks/python/exercises/reverse-string/README.md +1 -1
  297. data/tracks/python/exercises/rna-transcription/README.md +1 -1
  298. data/tracks/python/exercises/robot-name/README.md +1 -1
  299. data/tracks/python/exercises/robot-simulator/README.md +1 -1
  300. data/tracks/python/exercises/roman-numerals/README.md +1 -1
  301. data/tracks/python/exercises/rotational-cipher/README.md +1 -1
  302. data/tracks/python/exercises/run-length-encoding/README.md +1 -1
  303. data/tracks/python/exercises/saddle-points/README.md +1 -1
  304. data/tracks/python/exercises/say/README.md +1 -1
  305. data/tracks/python/exercises/scale-generator/README.md +1 -1
  306. data/tracks/python/exercises/scrabble-score/README.md +1 -1
  307. data/tracks/python/exercises/secret-handshake/README.md +1 -1
  308. data/tracks/python/exercises/series/README.md +1 -1
  309. data/tracks/python/exercises/sgf-parsing/README.md +1 -1
  310. data/tracks/python/exercises/sieve/README.md +1 -1
  311. data/tracks/python/exercises/simple-cipher/README.md +1 -1
  312. data/tracks/python/exercises/simple-linked-list/README.md +1 -1
  313. data/tracks/python/exercises/space-age/README.md +1 -1
  314. data/tracks/python/exercises/spiral-matrix/README.md +1 -1
  315. data/tracks/python/exercises/strain/README.md +1 -1
  316. data/tracks/python/exercises/sublist/README.md +1 -1
  317. data/tracks/python/exercises/sum-of-multiples/README.md +1 -1
  318. data/tracks/python/exercises/tournament/README.md +1 -1
  319. data/tracks/python/exercises/transpose/README.md +1 -1
  320. data/tracks/python/exercises/tree-building/README.md +1 -1
  321. data/tracks/python/exercises/triangle/README.md +1 -1
  322. data/tracks/python/exercises/trinary/README.md +1 -1
  323. data/tracks/python/exercises/twelve-days/README.md +1 -1
  324. data/tracks/python/exercises/two-bucket/README.md +1 -1
  325. data/tracks/python/exercises/two-fer/README.md +1 -1
  326. data/tracks/python/exercises/variable-length-quantity/README.md +1 -1
  327. data/tracks/python/exercises/word-count/README.md +1 -1
  328. data/tracks/python/exercises/word-search/README.md +1 -1
  329. data/tracks/python/exercises/wordy/README.md +1 -1
  330. data/tracks/python/exercises/yacht/README.md +1 -1
  331. data/tracks/python/exercises/zebra-puzzle/README.md +1 -1
  332. data/tracks/python/exercises/zipper/README.md +1 -1
  333. data/tracks/python/requirements-travis.txt +1 -1
  334. data/tracks/swift/exercises/scale-generator/Tests/ScaleGeneratorTests/ScaleGeneratorTests.swift +1 -1
  335. metadata +32 -8
  336. data/tracks/csharp/generators/Input/CanonicalDataCaseJson.cs +0 -73
  337. data/tracks/csharp/generators/Input/CanonicalDataCaseJsonConverter.cs +0 -49
  338. data/tracks/csharp/generators/Input/CanonicalDataCasesJson.cs +0 -58
  339. data/tracks/csharp/generators/Input/CanonicalDataCasesJsonConverter.cs +0 -17
  340. data/tracks/java/exercises/go-counting/src/main/java/.keep +0 -0
@@ -91,7 +91,7 @@ raise Exception("Meaningful message indicating the source of the error")
91
91
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
92
92
 
93
93
  - Python 2.7: `py.test crypto_square_test.py`
94
- - Python 3.3+: `pytest crypto_square_test.py`
94
+ - Python 3.4+: `pytest crypto_square_test.py`
95
95
 
96
96
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
97
97
  `python -m pytest crypto_square_test.py`
@@ -26,7 +26,7 @@ raise Exception("Meaningful message indicating the source of the error")
26
26
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
27
27
 
28
28
  - Python 2.7: `py.test custom_set_test.py`
29
- - Python 3.3+: `pytest custom_set_test.py`
29
+ - Python 3.4+: `pytest custom_set_test.py`
30
30
 
31
31
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
32
32
  `python -m pytest custom_set_test.py`
@@ -71,7 +71,7 @@ raise Exception("Meaningful message indicating the source of the error")
71
71
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
72
72
 
73
73
  - Python 2.7: `py.test diamond_test.py`
74
- - Python 3.3+: `pytest diamond_test.py`
74
+ - Python 3.4+: `pytest diamond_test.py`
75
75
 
76
76
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
77
77
  `python -m pytest diamond_test.py`
@@ -31,7 +31,7 @@ raise Exception("Meaningful message indicating the source of the error")
31
31
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
32
32
 
33
33
  - Python 2.7: `py.test difference_of_squares_test.py`
34
- - Python 3.3+: `pytest difference_of_squares_test.py`
34
+ - Python 3.4+: `pytest difference_of_squares_test.py`
35
35
 
36
36
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
37
37
  `python -m pytest difference_of_squares_test.py`
@@ -73,7 +73,7 @@ raise Exception("Meaningful message indicating the source of the error")
73
73
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
74
74
 
75
75
  - Python 2.7: `py.test diffie_hellman_test.py`
76
- - Python 3.3+: `pytest diffie_hellman_test.py`
76
+ - Python 3.4+: `pytest diffie_hellman_test.py`
77
77
 
78
78
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
79
79
  `python -m pytest diffie_hellman_test.py`
@@ -33,7 +33,7 @@ raise Exception("Meaningful message indicating the source of the error")
33
33
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
34
34
 
35
35
  - Python 2.7: `py.test dominoes_test.py`
36
- - Python 3.3+: `pytest dominoes_test.py`
36
+ - Python 3.4+: `pytest dominoes_test.py`
37
37
 
38
38
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
39
39
  `python -m pytest dominoes_test.py`
@@ -59,7 +59,7 @@ raise Exception("Meaningful message indicating the source of the error")
59
59
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
60
60
 
61
61
  - Python 2.7: `py.test dot_dsl_test.py`
62
- - Python 3.3+: `pytest dot_dsl_test.py`
62
+ - Python 3.4+: `pytest dot_dsl_test.py`
63
63
 
64
64
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
65
65
  `python -m pytest dot_dsl_test.py`
@@ -38,7 +38,7 @@ raise Exception("Meaningful message indicating the source of the error")
38
38
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
39
39
 
40
40
  - Python 2.7: `py.test error_handling_test.py`
41
- - Python 3.3+: `pytest error_handling_test.py`
41
+ - Python 3.4+: `pytest error_handling_test.py`
42
42
 
43
43
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
44
44
  `python -m pytest error_handling_test.py`
@@ -65,7 +65,7 @@ raise Exception("Meaningful message indicating the source of the error")
65
65
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
66
66
 
67
67
  - Python 2.7: `py.test etl_test.py`
68
- - Python 3.3+: `pytest etl_test.py`
68
+ - Python 3.4+: `pytest etl_test.py`
69
69
 
70
70
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
71
71
  `python -m pytest etl_test.py`
@@ -29,7 +29,7 @@ raise Exception("Meaningful message indicating the source of the error")
29
29
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
30
30
 
31
31
  - Python 2.7: `py.test flatten_array_test.py`
32
- - Python 3.3+: `pytest flatten_array_test.py`
32
+ - Python 3.4+: `pytest flatten_array_test.py`
33
33
 
34
34
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
35
35
  `python -m pytest flatten_array_test.py`
@@ -82,7 +82,7 @@ raise Exception("Meaningful message indicating the source of the error")
82
82
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
83
83
 
84
84
  - Python 2.7: `py.test food_chain_test.py`
85
- - Python 3.3+: `pytest food_chain_test.py`
85
+ - Python 3.4+: `pytest food_chain_test.py`
86
86
 
87
87
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
88
88
  `python -m pytest food_chain_test.py`
@@ -44,7 +44,7 @@ raise Exception("Meaningful message indicating the source of the error")
44
44
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
45
45
 
46
46
  - Python 2.7: `py.test forth_test.py`
47
- - Python 3.3+: `pytest forth_test.py`
47
+ - Python 3.4+: `pytest forth_test.py`
48
48
 
49
49
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
50
50
  `python -m pytest forth_test.py`
@@ -23,7 +23,7 @@ raise Exception("Meaningful message indicating the source of the error")
23
23
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
24
24
 
25
25
  - Python 2.7: `py.test gigasecond_test.py`
26
- - Python 3.3+: `pytest gigasecond_test.py`
26
+ - Python 3.4+: `pytest gigasecond_test.py`
27
27
 
28
28
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
29
29
  `python -m pytest gigasecond_test.py`
@@ -54,7 +54,7 @@ raise Exception("Meaningful message indicating the source of the error")
54
54
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
55
55
 
56
56
  - Python 2.7: `py.test go_counting_test.py`
57
- - Python 3.3+: `pytest go_counting_test.py`
57
+ - Python 3.4+: `pytest go_counting_test.py`
58
58
 
59
59
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
60
60
  `python -m pytest go_counting_test.py`
@@ -53,7 +53,7 @@ raise Exception("Meaningful message indicating the source of the error")
53
53
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
54
54
 
55
55
  - Python 2.7: `py.test grade_school_test.py`
56
- - Python 3.3+: `pytest grade_school_test.py`
56
+ - Python 3.4+: `pytest grade_school_test.py`
57
57
 
58
58
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
59
59
  `python -m pytest grade_school_test.py`
@@ -45,7 +45,7 @@ raise Exception("Meaningful message indicating the source of the error")
45
45
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
46
46
 
47
47
  - Python 2.7: `py.test grains_test.py`
48
- - Python 3.3+: `pytest grains_test.py`
48
+ - Python 3.4+: `pytest grains_test.py`
49
49
 
50
50
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
51
51
  `python -m pytest grains_test.py`
@@ -83,7 +83,7 @@ raise Exception("Meaningful message indicating the source of the error")
83
83
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
84
84
 
85
85
  - Python 2.7: `py.test grep_test.py`
86
- - Python 3.3+: `pytest grep_test.py`
86
+ - Python 3.4+: `pytest grep_test.py`
87
87
 
88
88
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
89
89
  `python -m pytest grep_test.py`
@@ -54,7 +54,7 @@ raise Exception("Meaningful message indicating the source of the error")
54
54
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
55
55
 
56
56
  - Python 2.7: `py.test hamming_test.py`
57
- - Python 3.3+: `pytest hamming_test.py`
57
+ - Python 3.4+: `pytest hamming_test.py`
58
58
 
59
59
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
60
60
  `python -m pytest hamming_test.py`
@@ -33,7 +33,7 @@ raise Exception("Meaningful message indicating the source of the error")
33
33
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
34
34
 
35
35
  - Python 2.7: `py.test hello_world_test.py`
36
- - Python 3.3+: `pytest hello_world_test.py`
36
+ - Python 3.4+: `pytest hello_world_test.py`
37
37
 
38
38
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
39
39
  `python -m pytest hello_world_test.py`
@@ -26,7 +26,7 @@ raise Exception("Meaningful message indicating the source of the error")
26
26
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
27
27
 
28
28
  - Python 2.7: `py.test hexadecimal_test.py`
29
- - Python 3.3+: `pytest hexadecimal_test.py`
29
+ - Python 3.4+: `pytest hexadecimal_test.py`
30
30
 
31
31
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
32
32
  `python -m pytest hexadecimal_test.py`
@@ -124,7 +124,7 @@ raise Exception("Meaningful message indicating the source of the error")
124
124
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
125
125
 
126
126
  - Python 2.7: `py.test house_test.py`
127
- - Python 3.3+: `pytest house_test.py`
127
+ - Python 3.4+: `pytest house_test.py`
128
128
 
129
129
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
130
130
  `python -m pytest house_test.py`
@@ -59,7 +59,7 @@ raise Exception("Meaningful message indicating the source of the error")
59
59
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
60
60
 
61
61
  - Python 2.7: `py.test isbn_verifier_test.py`
62
- - Python 3.3+: `pytest isbn_verifier_test.py`
62
+ - Python 3.4+: `pytest isbn_verifier_test.py`
63
63
 
64
64
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
65
65
  `python -m pytest isbn_verifier_test.py`
@@ -32,7 +32,7 @@ raise Exception("Meaningful message indicating the source of the error")
32
32
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
33
33
 
34
34
  - Python 2.7: `py.test isogram_test.py`
35
- - Python 3.3+: `pytest isogram_test.py`
35
+ - Python 3.4+: `pytest isogram_test.py`
36
36
 
37
37
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
38
38
  `python -m pytest isogram_test.py`
@@ -78,7 +78,7 @@ raise Exception("Meaningful message indicating the source of the error")
78
78
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
79
79
 
80
80
  - Python 2.7: `py.test kindergarten_garden_test.py`
81
- - Python 3.3+: `pytest kindergarten_garden_test.py`
81
+ - Python 3.4+: `pytest kindergarten_garden_test.py`
82
82
 
83
83
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
84
84
  `python -m pytest kindergarten_garden_test.py`
@@ -32,7 +32,7 @@ raise Exception("Meaningful message indicating the source of the error")
32
32
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
33
33
 
34
34
  - Python 2.7: `py.test largest_series_product_test.py`
35
- - Python 3.3+: `pytest largest_series_product_test.py`
35
+ - Python 3.4+: `pytest largest_series_product_test.py`
36
36
 
37
37
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
38
38
  `python -m pytest largest_series_product_test.py`
@@ -45,7 +45,7 @@ raise Exception("Meaningful message indicating the source of the error")
45
45
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
46
46
 
47
47
  - Python 2.7: `py.test leap_test.py`
48
- - Python 3.3+: `pytest leap_test.py`
48
+ - Python 3.4+: `pytest leap_test.py`
49
49
 
50
50
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
51
51
  `python -m pytest leap_test.py`
@@ -46,7 +46,7 @@ raise Exception("Meaningful message indicating the source of the error")
46
46
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
47
47
 
48
48
  - Python 2.7: `py.test linked_list_test.py`
49
- - Python 3.3+: `pytest linked_list_test.py`
49
+ - Python 3.4+: `pytest linked_list_test.py`
50
50
 
51
51
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
52
52
  `python -m pytest linked_list_test.py`
@@ -25,7 +25,7 @@ raise Exception("Meaningful message indicating the source of the error")
25
25
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
26
26
 
27
27
  - Python 2.7: `py.test list_ops_test.py`
28
- - Python 3.3+: `pytest list_ops_test.py`
28
+ - Python 3.4+: `pytest list_ops_test.py`
29
29
 
30
30
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
31
31
  `python -m pytest list_ops_test.py`
@@ -83,7 +83,7 @@ raise Exception("Meaningful message indicating the source of the error")
83
83
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
84
84
 
85
85
  - Python 2.7: `py.test luhn_test.py`
86
- - Python 3.3+: `pytest luhn_test.py`
86
+ - Python 3.4+: `pytest luhn_test.py`
87
87
 
88
88
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
89
89
  `python -m pytest luhn_test.py`
@@ -33,7 +33,7 @@ raise Exception("Meaningful message indicating the source of the error")
33
33
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
34
34
 
35
35
  - Python 2.7: `py.test markdown_test.py`
36
- - Python 3.3+: `pytest markdown_test.py`
36
+ - Python 3.4+: `pytest markdown_test.py`
37
37
 
38
38
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
39
39
  `python -m pytest markdown_test.py`
@@ -59,7 +59,7 @@ raise Exception("Meaningful message indicating the source of the error")
59
59
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
60
60
 
61
61
  - Python 2.7: `py.test matrix_test.py`
62
- - Python 3.3+: `pytest matrix_test.py`
62
+ - Python 3.4+: `pytest matrix_test.py`
63
63
 
64
64
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
65
65
  `python -m pytest matrix_test.py`
@@ -45,7 +45,7 @@ raise Exception("Meaningful message indicating the source of the error")
45
45
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
46
46
 
47
47
  - Python 2.7: `py.test meetup_test.py`
48
- - Python 3.3+: `pytest meetup_test.py`
48
+ - Python 3.4+: `pytest meetup_test.py`
49
49
 
50
50
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
51
51
  `python -m pytest meetup_test.py`
@@ -45,7 +45,7 @@ raise Exception("Meaningful message indicating the source of the error")
45
45
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
46
46
 
47
47
  - Python 2.7: `py.test minesweeper_test.py`
48
- - Python 3.3+: `pytest minesweeper_test.py`
48
+ - Python 3.4+: `pytest minesweeper_test.py`
49
49
 
50
50
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
51
51
  `python -m pytest minesweeper_test.py`
@@ -27,7 +27,7 @@ raise Exception("Meaningful message indicating the source of the error")
27
27
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
28
28
 
29
29
  - Python 2.7: `py.test nth_prime_test.py`
30
- - Python 3.3+: `pytest nth_prime_test.py`
30
+ - Python 3.4+: `pytest nth_prime_test.py`
31
31
 
32
32
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
33
33
  `python -m pytest nth_prime_test.py`
@@ -31,7 +31,7 @@ raise Exception("Meaningful message indicating the source of the error")
31
31
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
32
32
 
33
33
  - Python 2.7: `py.test nucleotide_count_test.py`
34
- - Python 3.3+: `pytest nucleotide_count_test.py`
34
+ - Python 3.4+: `pytest nucleotide_count_test.py`
35
35
 
36
36
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
37
37
  `python -m pytest nucleotide_count_test.py`
@@ -97,7 +97,7 @@ raise Exception("Meaningful message indicating the source of the error")
97
97
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
98
98
 
99
99
  - Python 2.7: `py.test ocr_numbers_test.py`
100
- - Python 3.3+: `pytest ocr_numbers_test.py`
100
+ - Python 3.4+: `pytest ocr_numbers_test.py`
101
101
 
102
102
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
103
103
  `python -m pytest ocr_numbers_test.py`
@@ -65,7 +65,7 @@ raise Exception("Meaningful message indicating the source of the error")
65
65
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
66
66
 
67
67
  - Python 2.7: `py.test octal_test.py`
68
- - Python 3.3+: `pytest octal_test.py`
68
+ - Python 3.4+: `pytest octal_test.py`
69
69
 
70
70
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
71
71
  `python -m pytest octal_test.py`
@@ -51,7 +51,7 @@ raise Exception("Meaningful message indicating the source of the error")
51
51
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
52
52
 
53
53
  - Python 2.7: `py.test palindrome_products_test.py`
54
- - Python 3.3+: `pytest palindrome_products_test.py`
54
+ - Python 3.4+: `pytest palindrome_products_test.py`
55
55
 
56
56
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
57
57
  `python -m pytest palindrome_products_test.py`
@@ -27,7 +27,7 @@ raise Exception("Meaningful message indicating the source of the error")
27
27
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
28
28
 
29
29
  - Python 2.7: `py.test pangram_test.py`
30
- - Python 3.3+: `pytest pangram_test.py`
30
+ - Python 3.4+: `pytest pangram_test.py`
31
31
 
32
32
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
33
33
  `python -m pytest pangram_test.py`
@@ -26,7 +26,7 @@ raise Exception("Meaningful message indicating the source of the error")
26
26
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
27
27
 
28
28
  - Python 2.7: `py.test parallel_letter_frequency_test.py`
29
- - Python 3.3+: `pytest parallel_letter_frequency_test.py`
29
+ - Python 3.4+: `pytest parallel_letter_frequency_test.py`
30
30
 
31
31
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
32
32
  `python -m pytest parallel_letter_frequency_test.py`
@@ -33,7 +33,7 @@ raise Exception("Meaningful message indicating the source of the error")
33
33
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
34
34
 
35
35
  - Python 2.7: `py.test pascals_triangle_test.py`
36
- - Python 3.3+: `pytest pascals_triangle_test.py`
36
+ - Python 3.4+: `pytest pascals_triangle_test.py`
37
37
 
38
38
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
39
39
  `python -m pytest pascals_triangle_test.py`
@@ -36,7 +36,7 @@ raise Exception("Meaningful message indicating the source of the error")
36
36
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
37
37
 
38
38
  - Python 2.7: `py.test perfect_numbers_test.py`
39
- - Python 3.3+: `pytest perfect_numbers_test.py`
39
+ - Python 3.4+: `pytest perfect_numbers_test.py`
40
40
 
41
41
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
42
42
  `python -m pytest perfect_numbers_test.py`
@@ -47,7 +47,7 @@ raise Exception("Meaningful message indicating the source of the error")
47
47
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
48
48
 
49
49
  - Python 2.7: `py.test phone_number_test.py`
50
- - Python 3.3+: `pytest phone_number_test.py`
50
+ - Python 3.4+: `pytest phone_number_test.py`
51
51
 
52
52
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
53
53
  `python -m pytest phone_number_test.py`
@@ -36,7 +36,7 @@ raise Exception("Meaningful message indicating the source of the error")
36
36
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
37
37
 
38
38
  - Python 2.7: `py.test pig_latin_test.py`
39
- - Python 3.3+: `pytest pig_latin_test.py`
39
+ - Python 3.4+: `pytest pig_latin_test.py`
40
40
 
41
41
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
42
42
  `python -m pytest pig_latin_test.py`
@@ -53,7 +53,7 @@ raise Exception("Meaningful message indicating the source of the error")
53
53
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
54
54
 
55
55
  - Python 2.7: `py.test point_mutations_test.py`
56
- - Python 3.3+: `pytest point_mutations_test.py`
56
+ - Python 3.4+: `pytest point_mutations_test.py`
57
57
 
58
58
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
59
59
  `python -m pytest point_mutations_test.py`
@@ -24,7 +24,7 @@ raise Exception("Meaningful message indicating the source of the error")
24
24
  To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
25
25
 
26
26
  - Python 2.7: `py.test poker_test.py`
27
- - Python 3.3+: `pytest poker_test.py`
27
+ - Python 3.4+: `pytest poker_test.py`
28
28
 
29
29
  Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
30
30
  `python -m pytest poker_test.py`