Skip to content

Commit

Permalink
keep the extras keys the same
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Jun 17, 2018
1 parent 00bcfca commit d3092c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ script:
- if [ -n "$PYBCRYPT" ]; then pip install psycopg2cffi; fi
- if [ -n "$MYSQL" ]; then pip install http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-2.0.4.zip#md5=3df394d89300db95163f17c843ef49df; fi

- if [ -n "$LINT" ]; then pip install black ; fi
- if [ -n "$LINT" ]; then pip install -e ".[lint]" ; fi
# PyLint
- if [ -n "$LINT" ]; then pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,jobs=4 ziggurat_foundations/ ; fi

Expand Down
12 changes: 1 addition & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,6 @@
__version__['minor'],
__version__['patch'])

test_deps = [
"coverage",
"flake8",
"pylint",
"pyramid",
"pytest",
"pytest-cov",
"rstcheck"
]

setup(
name='ziggurat_foundations',
version=version,
Expand Down Expand Up @@ -61,7 +51,7 @@
"six"],
setup_requires=["pytest-runner"],
extras_require={
'dev': ['coverage', 'pytest', 'pytest-cov', 'tox', 'mock'],
'test': ['coverage', 'pytest', 'pytest-cov', 'tox', 'mock'],
'lint': ['black', 'pylint', 'rstcheck', 'flake8'],
}
)

0 comments on commit d3092c6

Please sign in to comment.