我建立一個Python包,其中大部分是C++代碼(認爲numpy的)支持兩種語言在travis.ci文件
我特拉維斯文件是當前
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
dist: trusty
script: "make pcst_fast_test && ./pcst_fast_test"
notifications:
...
但我也寫了一些python在一個名爲test_pcst_fast.py
的文件中測試。有沒有辦法從travis中調用這些方法?
它似乎對whether travis supports multiple languages in one file不明確,但似乎大多數人都會這樣做,儘管只在language
標籤下列出了一種語言。