Unverified Commit 40e575dd authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #273 from robbuckley/py38-tests

MRG: Add 3.8 tests for linux + mac, make 3.8 the default for mac

Addresses #261 
parents 9aa19671 a5b35d36
...@@ -76,14 +76,14 @@ function fill_pyver { ...@@ -76,14 +76,14 @@ function fill_pyver {
echo $ver echo $ver
elif [ $ver == 2 ] || [ $ver == "2.7" ]; then elif [ $ver == 2 ] || [ $ver == "2.7" ]; then
echo $LATEST_2p7 echo $LATEST_2p7
elif [ $ver == 3 ] || [ $ver == "3.7" ]; then elif [ $ver == 3 ] || [ $ver == "3.8" ]; then
echo $LATEST_3p8
elif [ $ver == "3.7" ]; then
echo $LATEST_3p7 echo $LATEST_3p7
elif [ $ver == "3.6" ]; then elif [ $ver == "3.6" ]; then
echo $LATEST_3p6 echo $LATEST_3p6
elif [ $ver == "3.5" ]; then elif [ $ver == "3.5" ]; then
echo $LATEST_3p5 echo $LATEST_3p5
elif [ $ver == "3.8" ]; then
echo $LATEST_3p8
else else
echo "Can't fill version $ver" 1>&2 echo "Can't fill version $ver" 1>&2
exit 1 exit 1
......
...@@ -2,9 +2,11 @@ ...@@ -2,9 +2,11 @@
[ "$(fill_pyver 2)" == $LATEST_2p7 ] || ingest [ "$(fill_pyver 2)" == $LATEST_2p7 ] || ingest
[ "$(fill_pyver 2.7)" == $LATEST_2p7 ] || ingest [ "$(fill_pyver 2.7)" == $LATEST_2p7 ] || ingest
[ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest [ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest
[ "$(fill_pyver 3)" == $LATEST_3p7 ] || ingest [ "$(fill_pyver 3)" == $LATEST_3p8 ] || ingest
[ "$(fill_pyver 3.7.0)" == "3.7.0" ] || ingest [ "$(fill_pyver 3.8)" == $LATEST_3p8 ] || ingest
[ "$(fill_pyver 3.8.0)" == "3.8.0" ] || ingest
[ "$(fill_pyver 3.7)" == $LATEST_3p7 ] || ingest [ "$(fill_pyver 3.7)" == $LATEST_3p7 ] || ingest
[ "$(fill_pyver 3.7.0)" == "3.7.0" ] || ingest
[ "$(fill_pyver 3.6)" == $LATEST_3p6 ] || ingest [ "$(fill_pyver 3.6)" == $LATEST_3p6 ] || ingest
[ "$(fill_pyver 3.6.0)" == "3.6.0" ] || ingest [ "$(fill_pyver 3.6.0)" == "3.6.0" ] || ingest
[ "$(fill_pyver 3.5)" == $LATEST_3p5 ] || ingest [ "$(fill_pyver 3.5)" == $LATEST_3p5 ] || ingest
......
...@@ -9,4 +9,7 @@ ...@@ -9,4 +9,7 @@
[ "$(cpython_path 3.5 16)" == "/opt/python/cp35-cp35m" ] || ingest "cp 3.5 16" [ "$(cpython_path 3.5 16)" == "/opt/python/cp35-cp35m" ] || ingest "cp 3.5 16"
[ "$(cpython_path 3.7)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7" [ "$(cpython_path 3.7)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7"
[ "$(cpython_path 3.7 32)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7 32" [ "$(cpython_path 3.7 32)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7 32"
[ "$(cpython_path 3.7 16)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7 16" [ "$(cpython_path 3.7 16)" == "/opt/python/cp37-cp37m" ] || ingest "cp 3.7 16"
\ No newline at end of file [ "$(cpython_path 3.8)" == "/opt/python/cp38-cp38" ] || ingest "cp 3.8"
[ "$(cpython_path 3.8 32)" == "/opt/python/cp38-cp38" ] || ingest "cp 3.8 32"
[ "$(cpython_path 3.8 16)" == "/opt/python/cp38-cp38" ] || ingest "cp 3.8 16"
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment