1
とpytest:トラヴィスCIと複数のPythonのバージョン
language: python
python:
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6-dev" # 3.6 development branch
- "nightly" # currently points to 3.7-dev
# command to run tests
script: pytest
問題は、Python < = 3.5で、それはpy.test
代わりのpytest
だということです。
"3.4"と "3.5"にはpy.test
を使用するようにトラビスに伝えるにはどうすればよいですか?
:
はにscript
セクションを変更しました。 – jonrsharpe