X Tutup
Skip to content

Commit 5b2f83c

Browse files
committed
correct makefile build targets
1 parent 2fc2d6c commit 5b2f83c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@ check-long: pytest
2727
check-short: pytest
2828
$(MAKE) -C test check-short-2.7
2929

30-
#: Run quick tests
30+
#: Run tests if Python 2.7
31+
check-2.7: pytest
32+
$(MAKE) -C test $@
33+
34+
#: Run tests if Python 3.4
3135
check-3.4: pytest
32-
$(MAKE) -C test check-3.4
36+
$(MAKE) -C test $@
3337

3438

3539
#: check that disassembly exactly matches Python lib's dis

0 commit comments

Comments
 (0)
X Tutup