Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
#253 Replace removed Travis install with no-op
Browse files Browse the repository at this point in the history
Per [1] Travis will do some autoamtic setup steps
based on the kind of build, which for `python` builds
seems to involve automatically installing our
_requirements.txt_ file prior to running the Docker
build process we actually want.

See for example the `pip install -r requirements.txt`
command executed in this build [2] that takes almost
100 seconds.

This change overrides Travis's `install` step with
a no-op directive.

[1]: https://docs.travis-ci.com/user/customizing-the-build#Customizing-the-Installation-Step
[2]: https://travis-ci.org/ic-labs/django-icekit/builds/245610276
  • Loading branch information
jmurty committed Jun 22, 2017
1 parent 7815681 commit 054239c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,10 @@ language: python
services:
- docker

# Skip any default but pointless (for us) work Travis does for `python` builds:
# https://docs.travis-ci.com/user/customizing-the-build#Customizing-the-Installation-Step
install: true

before_script:
- docker --version
- docker-compose --version
Expand Down

0 comments on commit 054239c

Please sign in to comment.