aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-11-12 15:57:45 -0500
committerPaul Ganssle <paul@ganssle.io>2018-11-12 16:12:58 -0500
commit4f167f0fe532764fd3b19b0386c621b8f35ebf9e (patch)
treef886acaaabe57605399cfb20311b4a5b76e95ea6
parent283ebe24799a4e2dfbc38085ef6a85e05de1dac0 (diff)
downloadexternal_python_setuptools-4f167f0fe532764fd3b19b0386c621b8f35ebf9e.tar.gz
external_python_setuptools-4f167f0fe532764fd3b19b0386c621b8f35ebf9e.tar.bz2
external_python_setuptools-4f167f0fe532764fd3b19b0386c621b8f35ebf9e.zip
Fix Travis test for pyc files in egg-info
`!` is a special character in YAML syntax, so this was being interpreted as `grep pyc ...`, not `! grep pyc ...` I've also added the same `pyc` test to the normal tests.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 442e3ec2..d1febccb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,7 +32,7 @@ jobs:
after_success: true
before_deploy:
- python bootstrap.py
- - ! grep pyc setuptools.egg-info/SOURCES.txt
+ - "! grep pyc setuptools.egg-info/SOURCES.txt"
deploy:
provider: pypi
on:
@@ -60,6 +60,7 @@ install:
# update egg_info based on setup.py in checkout
- python bootstrap.py
+- "! grep pyc setuptools.egg-info/SOURCES.txt"
script:
- |