Add NG-UI Charm
[osm/devops.git] / installers / charm / ng-ui / tox.ini
1 # Copyright 2020 Canonical Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 [tox]
15 envlist = pep8
16 skipsdist = True
17
18 [testenv]
19 setenv = VIRTUAL_ENV={envdir}
20 PYTHONHASHSEED=0
21 whitelist_externals = juju
22 passenv = HOME TERM CS_API_* OS_* AMULET_*
23 deps = -r{toxinidir}/test-requirements.txt
24 install_command =
25 pip install {opts} {packages}
26
27 [testenv:black]
28 basepython = python3
29 deps =
30 black
31 yamllint
32 commands =
33 black --check --diff src
34 yamllint .
35
36 [testenv:pep8]
37 basepython = python3
38 deps=charm-tools
39 commands = charm-proof
40
41 [testenv:func-noop]
42 basepython = python3
43 commands =
44 true
45
46 [testenv:func]
47 basepython = python3
48 commands = functest-run-suite
49
50 [testenv:func-smoke]
51 basepython = python3
52 commands = functest-run-suite --keep-model --smoke
53
54 [testenv:venv]
55 commands = {posargs}