Commit 4f167f0f authored by Paul Ganssle's avatar Paul Ganssle

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.
parent 283ebe24
......@@ -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:
- |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment