travis: ignore running pip for language: python

This commit is contained in:
Alibek Omarov 2019-10-18 01:15:52 +03:00 committed by GitHub
parent 8870853a19
commit d1770111a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,8 @@ jobs:
apt: apt:
packages: packages:
- build-essential - build-essential
install:
- echo meow # do not run pip
script: script:
- bash run-tests.sh $TYPE - bash run-tests.sh $TYPE
- stage: deploy - stage: deploy
@ -26,6 +28,8 @@ jobs:
dist: xenial dist: xenial
python: "3.8" python: "3.8"
env: TYPE="ext" env: TYPE="ext"
install:
- echo meow # do not run pip
script: script:
- bash build-waf.sh - bash build-waf.sh
after_script: after_script: