X Tutup
Skip to content

Commit 96fa3ef

Browse files
committed
3.2 needs --weak-verify
1 parent 755415c commit 96fa3ef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ python:
66
- '3.5'
77
- '2.7.12'
88
- '2.6'
9-
- '3.2'
109
- '3.3'
1110
- '3.4'
11+
- '3.2'
1212

1313
install:
1414
- pip install -r requirements.txt

test/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ check-2.6 check-2.7: check-bytecode-2 check-bytecode-3 check-bytecode-1 check-2
2424

2525
#: Run working tests from Python 3.0
2626
check-3.0: check-bytecode
27-
$(PYTHON) test_pythonlib.py --bytecode-3.0 --verify $(COMPILE)
27+
$(PYTHON) test_pythonlib.py --bytecode-3.0 --weak-verify $(COMPILE)
2828

2929
#: Run working tests from Python 3.1
3030
check-3.1: check-bytecode
31-
$(PYTHON) test_pythonlib.py --bytecode-3.1 --verify $(COMPILE)
31+
$(PYTHON) test_pythonlib.py --bytecode-3.1 --weak-verify $(COMPILE)
3232

3333
#: Run working tests from Python 3.2
3434
check-3.2: check-bytecode
35-
$(PYTHON) test_pythonlib.py --bytecode-3.2 --verify $(COMPILE)
35+
$(PYTHON) test_pythonlib.py --bytecode-3.2 --weak-verify $(COMPILE)
3636

3737
#: Run working tests from Python 3.3
3838
check-3.3: check-bytecode

0 commit comments

Comments
 (0)
X Tutup