We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to test stuff, we need to add a .travis.yml file.
.travis.yml
A simple .travis.yml file could look like this (see Travis documentation for more information):
language: python sudo: false env: global: - LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so - SEGFAULT_SIGNALS=all matrix: include: - env: TOXENV=flake8 - env: TOXENV=3.4 python: 3.4 - env: TOXENV=3.5 python: 3.5 - env: TOXENV=3.6 python: 3.6 before_install: - python3 --version - uname -a - lsb_release -a - virtualenv --version - easy_install --version - pip --version - tox --version install: # - pip install -U pip setuptools - pip install -r dev-requirements.pip script: - tox -v before_cache: - rm -rf $HOME/.cache/pip/log cache: directories: - $HOME/.cache/pip notifications: email: on_success: never on_failure: always
The text was updated successfully, but these errors were encountered:
Merged with #22 .
Sorry, something went wrong.
termdew
No branches or pull requests
Problem
In order to test stuff, we need to add a
.travis.yml
file.Solution
A simple
.travis.yml
file could look like this (see Travis documentation for more information):The text was updated successfully, but these errors were encountered: