File tree 2 files changed +3
-15
lines changed
2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change 51
51
deps += ['typing' , ] # backward compatibility for 3.3 and 3.4
52
52
53
53
54
- # Extra dependencies for a development environment.
55
- # if 'develop' in sys.argv: <- we cannot do that as pip is doing that in 2 steps.
56
- # TODO(gbin): find another way to filter those out if we don't need them.
57
-
58
- deps += ['mock' ,
59
- 'pep8' ,
60
- # Order matters here, pytest must come last. See also:
61
- # https://github.com/errbotio/errbot/pull/496
62
- # https://bitbucket.org/pypa/setuptools/issues/196/tests_require-pytest-pytest-cov-breaks
63
- 'pytest-xdist' ,
64
- 'pytest' ,
65
- 'PyOpenSSL' ,
66
- 'docutils' , # for rst linting for pypi.
67
- ]
68
-
69
54
if not ON_WINDOWS :
70
55
deps += ['daemonize' ]
71
56
Original file line number Diff line number Diff line change @@ -4,13 +4,16 @@ skip_missing_interpreters = True
4
4
5
5
[testenv]
6
6
deps =
7
+ mock
7
8
pytest
8
9
slackclient
10
+
9
11
commands = py.test
10
12
11
13
[testenv:codestyle]
12
14
deps = pycodestyle
13
15
commands = pycodestyle errbot tests
14
16
15
17
[testenv:pypi-lint]
18
+ deps = docutils
16
19
commands = python setup.py check --restructured --strict --metadata
You can’t perform that action at this time.
0 commit comments