Files
adventofcode/.travis.yml
Bert Peters 2907726363 Don't build on Python Nightly
Python nightly doesn't support Numpy, or the other way around, but
either way it doesn't work and causes build failures.
2021-01-24 10:23:20 +01:00

19 lines
276 B
YAML

dist: bionic
language: python
python:
- "3.9"
# Custom directory, for the correct year
before_install:
- cd 2019
- python -m pip install --upgrade pip
script: pytest
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log