3.2 needs --weak-verify

This commit is contained in:
rocky
2016-12-10 07:35:31 -05:00
parent 755415c7d8
commit 96fa3ef381
2 changed files with 4 additions and 4 deletions

View File

@@ -6,9 +6,9 @@ python:
- '3.5'
- '2.7.12'
- '2.6'
- '3.2'
- '3.3'
- '3.4'
- '3.2'
install:
- pip install -r requirements.txt

View File

@@ -24,15 +24,15 @@ check-2.6 check-2.7: check-bytecode-2 check-bytecode-3 check-bytecode-1 check-2
#: Run working tests from Python 3.0
check-3.0: check-bytecode
$(PYTHON) test_pythonlib.py --bytecode-3.0 --verify $(COMPILE)
$(PYTHON) test_pythonlib.py --bytecode-3.0 --weak-verify $(COMPILE)
#: Run working tests from Python 3.1
check-3.1: check-bytecode
$(PYTHON) test_pythonlib.py --bytecode-3.1 --verify $(COMPILE)
$(PYTHON) test_pythonlib.py --bytecode-3.1 --weak-verify $(COMPILE)
#: Run working tests from Python 3.2
check-3.2: check-bytecode
$(PYTHON) test_pythonlib.py --bytecode-3.2 --verify $(COMPILE)
$(PYTHON) test_pythonlib.py --bytecode-3.2 --weak-verify $(COMPILE)
#: Run working tests from Python 3.3
check-3.3: check-bytecode