When I specify multiple python versions like below, travis initiates testing.
python:
- "3.7"
- "3.8"
(from https://github.com/biocommons/uta-align/blob/05a6d088d66ce911e934b1c085c173fdefd65a7b/.travis.yml)
If I remove either version line so that only one version is specified, travis (nearly) silently ignores the push. The requests page shows “Build config did not create any jobs.”
If I specify 3.7 twice, it works but initiates only one 3.7 run.
Both of these behaviors surprise me.