File: 0003-Test-against-Python-3.patch

package info (click to toggle)
pyml 20200518-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 608 kB
  • sloc: ml: 6,229; ansic: 1,610; makefile: 1,224; sh: 13
file content (30 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
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
From: Stephane Glondu <steph@glondu.net>
Date: Fri, 7 Aug 2020 16:02:24 +0200
Subject: Test against Python 3

---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 8b3a342..806bfc7 100644
--- a/Makefile
+++ b/Makefile
@@ -197,13 +197,13 @@ test : test.bytecode $(TESTOPT)
 
 .PHONY : test.bytecode
 test.bytecode : pyml_tests.bytecode numpy_tests.bytecode
-	./pyml_tests.bytecode
-	./numpy_tests.bytecode
+	./pyml_tests.bytecode 3
+	./numpy_tests.bytecode 3
 
 .PHONY : test.native
 test.native : pyml_tests.native numpy_tests.native
-	./pyml_tests.native
-	./numpy_tests.native
+	./pyml_tests.native 3
+	./numpy_tests.native 3
 
 .PHONY : install
 install :