Update PythonTest.sh
Allow tests to complete as Python 2 does not support type-hinting, drop support for Python 2 per https://github.com/google/flatbuffers/issues/6329.
This commit is contained in:
parent
c7a8102b12
commit
47ef9df6e4
|
@ -53,9 +53,9 @@ function run_tests() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Run test suite with these interpreters. The arguments are benchmark counts.
|
# Run test suite with these interpreters. The arguments are benchmark counts.
|
||||||
run_tests python2.6 100 100 100 100 false
|
# run_tests python2.6 100 100 100 100 false
|
||||||
run_tests python2.7 100 100 100 100 false
|
# run_tests python2.7 100 100 100 100 false
|
||||||
run_tests python2.7 100 100 100 100 true
|
# run_tests python2.7 100 100 100 100 true
|
||||||
run_tests python3 100 100 100 100 false
|
run_tests python3 100 100 100 100 false
|
||||||
run_tests python3 100 100 100 100 true
|
run_tests python3 100 100 100 100 true
|
||||||
run_tests pypy 100 100 100 100 false
|
run_tests pypy 100 100 100 100 false
|
||||||
|
|
Loading…
Reference in New Issue