-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
68 lines (50 loc) · 899 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Makefile for Python Kata
.PHONY: test
test: # Make test the default task
$(MAKE) fizz
$(MAKE) fib
$(MAKE) leap
$(MAKE) prime
$(MAKE) roman
$(MAKE) stack
$(MAKE) tic
$(MAKE) yahtzee
$(MAKE) tennis
$(MAKE) gilded
$(MAKE) raid
$(MAKE) smelly
$(MAKE) copier
$(MAKE) esa
$(MAKE) london
fizz:
pytest src/fizz_buzz/test
fib:
pytest src/fibonacci/test
leap:
pytest src/leap_year/test
prime:
pytest src/prime_factors/test
roman:
pytest src/roman_numerals/test
stack:
pytest src/stack_kata/test
tic:
pytest src/tic_tac_toe/test
yahtzee:
pytest src/yahtzee/test
tennis:
pytest src/tennis/test
gilded:
pytest src/gilded_rose/test
raid:
pytest src/raid/test
smelly:
pytest src/smelly_tic_tac_toe/test
copier:
pytest src/character_copier/test
esa:
pytest src/esa_mars_rover/test
social:
pytest src/social_network/test
london:
pytest src/london_tic_tac_toe/test