Skip to content

Instantly share code, notes, and snippets.

@frostidaho
Created March 20, 2017 19:46
Show Gist options
  • Save frostidaho/828e018131a6f8e72a24fa2182e99d95 to your computer and use it in GitHub Desktop.
Save frostidaho/828e018131a6f8e72a24fa2182e99d95 to your computer and use it in GitHub Desktop.
cookiecutter pylib issue
# This file exists so you can easily regenerate your project.
#
# `cookiepatcher` is a convenient shim around `cookiecutter`
# for regenerating projects (it will generate a .cookiecutterrc
# automatically for any template). To use it:
#
# pip install cookiepatcher
# cookiepatcher gh:ionelmc/cookiecutter-pylibrary project-path
#
# See:
# https://pypi.python.org/pypi/cookiecutter
#
# Alternatively, you can run:
#
# cookiecutter --overwrite-if-exists --config-file=project-path/.cookiecutterrc gh:ionelmc/cookiecutter-pylibrary
default_context:
appveyor: 'no'
c_extension_cython: 'no'
c_extension_optional: 'no'
c_extension_support: 'no'
codacy: 'no'
codeclimate: 'no'
codecov: 'no'
command_line_interface: 'plain'
command_line_interface_bin_name: 'nameless'
coveralls: 'yes'
distribution_name: 'nameless'
email: 'frostidaho@gmail.com'
full_name: 'Idaho Frost'
github_username: 'frostidaho'
landscape: 'no'
package_name: 'nameless'
project_name: 'Nameless'
project_short_description: 'An example package. Generated with cookiecutter-pylibrary.'
release_date: 'today'
repo_name: 'python-nameless'
requiresio: 'no'
scrutinizer: 'no'
sphinx_doctest: 'no'
sphinx_theme: 'sphinx-rtd-theme'
test_matrix_configurator: 'yes'
test_matrix_separate_coverage: 'no'
test_runner: 'pytest'
travis: 'yes'
version: '0.1.0'
website: 'https://github.com/frostidaho'
year: 'now'
language: python
sudo: false
cache: pip
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
- TOXENV=check
- TOXENV=docs
matrix:
include:
- python: 7.-
env:
- TOXENV=2.7-cover,report,coveralls - python: 7.-
env:
- TOXENV=2.7-nocov - python: 3.-
env:
- TOXENV=3.3-cover,report,coveralls - python: 3.-
env:
- TOXENV=3.3-nocov - python: 4.-
env:
- TOXENV=3.4-cover,report,coveralls - python: 4.-
env:
- TOXENV=3.4-nocov - python: 5.-
env:
- TOXENV=3.5-cover,report,coveralls - python: 5.-
env:
- TOXENV=3.5-nocov - python: pypy
env:
- TOXENV=pypy-cover,report,coveralls - python: pypy
env:
- TOXENV=pypy-nocov
before_install:
- python --version
- uname -a
- lsb_release -a
install:
- pip install tox
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
script:
- tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment