Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@JayH5
Created January 28, 2019 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JayH5/f138546568df28b14309673033b21bf2 to your computer and use it in GitHub Desktop.
Save JayH5/f138546568df28b14309673033b21bf2 to your computer and use it in GitHub Desktop.
Travis single-element lists as strings
---
language: python
services:
- postgresql
before_install:
- pip install --upgrade pip
install:
- pip install -r requirements/dev.txt
script:
- coverage run -m pytest
# Travis will treat the below as equivalent
---
language: python
services: postgresql
before_install: pip install --upgrade pip
install: pip install -r requirements/dev.txt
script: coverage run -m pytest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment