This repository was archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfixme_tox.ini
More file actions
52 lines (50 loc) · 1.35 KB
/
fixme_tox.ini
File metadata and controls
52 lines (50 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
; [tox]
; envlist = py35, flake8, requirements, typing
; skip_missing_interpreters = True
;
; [testenv]
; basepython=python3
; sitepackages=true
; setenv =
; ; both temper-python and XBee modules have utf8 in their README files
; ; which get read in from setup.py. If we don't force our locale to a
; ; utf8 one, tox's env is reset. And the install of these 2 packages
; ; fail.
; LANG=en_US.UTF-8
; PYTHONPATH = {toxinidir}:{toxinidir}/scarlett_os
; TOX_SITEPACKAGES=1
; commands = python3 setup.py test
; ; If you want to make tox run the tests with the same versions, create a
; ; requirements.txt with the pinned versions and uncomment the following lines:
; deps =
; pytest
; ruamel.venvgtk
; -r{toxinidir}/requirements.txt
; -r{toxinidir}/requirements_dev.txt
;
; [testenv:flake8]
; sitepackages=true
; basepython=python3
; deps=flake8
; commands=flake8 scarlett_os
; [testenv:lint]
; basepython = python3
; ignore_errors = True
; commands =
; flake8
; pylint scarlett_os
; pydocstyle scarlett_os tests
;
; [testenv:requirements]
; basepython = python3
; deps =
; commands =
; python script/gen_requirements_all.py validate
;
; [testenv:typing]
; basepython = python3
; deps =
; -r{toxinidir}/requirements_test.txt
; commands =
; mypy --silent-imports scarlett_os
; Contact GitHub API Training Shop Blog About