Skip to content
This repository has been archived by the owner on Jan 29, 2022. It is now read-only.

Commit

Permalink
Update dependencies, refresh QA configuration
Browse files Browse the repository at this point in the history
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
  • Loading branch information
virtualtam committed Apr 29, 2016
1 parent 880902e commit ddbd325
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 29 deletions.
3 changes: 0 additions & 3 deletions .isort.cfg

This file was deleted.

6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Botibal documentation build configuration file, created by
# sphinx-quickstart on Sat Jan 2 23:29:32 2016.
"""
Botibal documentation build configuration file
"""
import os
import shlex
import sys
Expand Down
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ persistent=no
load-plugins=

# Use multiple processes to speed up Pylint.
jobs=1
jobs=4

# Allow loading of arbitrary C extensions. Extensions are imported into the
# active Python interpreter and may run arbitrary code.
Expand Down
3 changes: 1 addition & 2 deletions requirements/development.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-r sphinx.txt
-r docs.txt
-r tests.txt
coverage==4.0.3
tox==2.3.1
twine==1.6.5
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
docutils==0.12
Sphinx==1.3.6
Sphinx==1.4.1
sphinx-autobuild==0.6.0
sphinx-rtd-theme==0.1.9
10 changes: 6 additions & 4 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
-r common.txt
isort==4.2.2
coverage==4.0.3
isort==4.2.5
pep8==1.7.0
pydocstyle==1.0.0
pylint==1.5.4
pytest==2.9.0
pytest-pylint==0.4.1
pylint==1.5.5
pytest==2.9.1
pytest-cov==2.2.1
pytest-pylint==0.5.0
16 changes: 10 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[bdist_wheel]
universal=0
universal = 0

[isort]
line_length = 80
skip = .git,.tox,docs

[pep8]
count: True
exclude: .git,__pycache__,.tox,docs
statistics: True
max-line-length: 80
count = True
exclude = .git,__pycache__,.tox,docs
statistics = True
max-line-length = 80

[pydocstyle]
ignore: D102,D105,D200,D203,D400,D401,D402
ignore = D102,D105,D200,D203,D400,D401,D402
19 changes: 10 additions & 9 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
[tox]
envlist: py{27,34,35}, docs
skipsdist: True
skip_missing_interpreters: True
envlist = py{27,34,35}, docs
skipsdist = True
skip_missing_interpreters = True

[testenv]
deps: -rrequirements/tests.txt
commands:
deps = -rrequirements/tests.txt
commands =
isort --check-only --diff
pep8
pydocstyle
py.test --pylint
py.test
py.test --cov botibal

[testenv:docs]
deps: -rrequirements/docs.txt
whitelist_externals: rm
commands:
deps = -rrequirements/docs.txt
whitelist_externals = rm
commands =
rm -rf doc/_build
sphinx-build -aEnq docs docs/_build/html
sphinx-build -aEnQW docs docs/_build/html
Expand Down

0 comments on commit ddbd325

Please sign in to comment.