Skip to content

Commit 19fd102

Browse files
committed
Added tests to docs
1 parent f553bdd commit 19fd102

File tree

4 files changed

+82
-4
lines changed

4 files changed

+82
-4
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ pylint = "*"
2222
tox = "*"
2323
safety = "*"
2424
bandit = "*"
25+
mkdocs = "*"
2526

2627
[requires]
2728
python_version = "3.6"

Pipfile.lock

+69-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements-tests.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@ jsonpickle==1.1
2828
jsonschema==2.6.0
2929
lazy-object-proxy==1.3.1
3030
lightstep==4.0.2
31+
livereload==2.6.0
32+
Markdown==3.0.1
3133
MarkupSafe==1.1.0
3234
mccabe==0.6.1
35+
mkdocs==1.0.4
3336
mock==2.0.0
3437
more-itertools==5.0.0
3538
nose==1.3.7
@@ -48,7 +51,7 @@ pytest-cov==2.6.1
4851
python-coveralls==2.9.1
4952
python-json-logger==0.1.10
5053
PyYAML==4.2b4
51-
requests==2.15.0
54+
requests==2.21.0
5255
requests-mock==1.5.2
5356
safety==1.8.4
5457
six==1.12.0
@@ -57,6 +60,7 @@ stevedore==1.30.0
5760
swagger-ui-bundle==0.0.3
5861
thrift==0.10.0
5962
toml==0.10.0
63+
tornado==6.0a1
6064
tox==3.7.0
6165
typed-ast==1.1.0
6266
urllib3==1.24.1

tox.ini

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,bandit,safety
2+
envlist = py36,bandit,safety,docs
33

44
[testenv]
55
deps = -rrequirements-tests.txt
@@ -19,4 +19,9 @@ basepython = python3.6
1919
commands = bandit -r pyms/
2020
[testenv:safety]
2121
basepython = python3.6
22-
commands = safety check -r requirements-tests.txt
22+
commands = safety check -r requirements-tests.txt
23+
[testenv:docs]
24+
basepython = python3.6
25+
skipsdist = True
26+
commands =
27+
mkdocs build

0 commit comments

Comments
 (0)