Merge pull request #3524 from hugovk/check-manifest-on-ci

CI: Run check-manifest in lint job
This commit is contained in:
Hugo van Kemenade 2019-01-06 16:13:16 +02:00 committed by GitHub
commit b97f9c4fcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ services:
install:
- |
if [ "$LINT" == "true" ]; then
pip install -U flake8
pip install -U check-manifest flake8
elif [ "$DOCKER" == "" ]; then
.travis/install.sh;
fi
@ -84,6 +84,7 @@ script:
- |
if [ "$LINT" == "true" ]; then
flake8 --statistics --count
check-manifest
elif [ "$DOCKER" == "" ]; then
.travis/script.sh
elif [ "$DOCKER" ]; then