wally-dev 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wally_dev/__init__.py +36 -0
- wally_dev/__main__.py +11 -0
- wally_dev/api_client.py +886 -0
- wally_dev/cli.py +91 -0
- wally_dev/commands/__init__.py +27 -0
- wally_dev/commands/checkout.py +338 -0
- wally_dev/commands/login.py +194 -0
- wally_dev/commands/logout.py +142 -0
- wally_dev/commands/norms.py +164 -0
- wally_dev/commands/organizations.py +296 -0
- wally_dev/commands/push.py +376 -0
- wally_dev/commands/rules.py +192 -0
- wally_dev/commands/run.py +549 -0
- wally_dev/commands/status.py +137 -0
- wally_dev/commands/testcases.py +761 -0
- wally_dev/config.py +268 -0
- wally_dev/constants.py +34 -0
- wally_dev/exceptions.py +233 -0
- wally_dev/generator.py +354 -0
- wally_dev/models.py +253 -0
- wally_dev/py.typed +0 -0
- wally_dev/runner.py +412 -0
- wally_dev/workspace.py +785 -0
- wally_dev-0.0.1.dist-info/METADATA +320 -0
- wally_dev-0.0.1.dist-info/RECORD +29 -0
- wally_dev-0.0.1.dist-info/WHEEL +5 -0
- wally_dev-0.0.1.dist-info/entry_points.txt +2 -0
- wally_dev-0.0.1.dist-info/licenses/LICENSE +33 -0
- wally_dev-0.0.1.dist-info/top_level.txt +1 -0
wally_dev/__init__.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Wally Dev CLI - Ferramenta para desenvolvimento local de casos de teste de acessibilidade.
|
|
3
|
+
|
|
4
|
+
Este módulo fornece uma CLI para desenvolvedores que trabalham com casos de teste
|
|
5
|
+
de acessibilidade da plataforma Wally.
|
|
6
|
+
|
|
7
|
+
Comandos disponíveis:
|
|
8
|
+
- login: Autenticação com username/password
|
|
9
|
+
- logout: Remove credenciais locais
|
|
10
|
+
- checkout: Bloqueia norma e baixa casos de teste para desenvolvimento local
|
|
11
|
+
- push: Faz upload de alterações e desbloqueia a norma
|
|
12
|
+
- run: Executa caso de teste localmente em modo debug
|
|
13
|
+
- norms list: Lista normas disponíveis
|
|
14
|
+
- rules list: Lista regras de uma norma
|
|
15
|
+
- status: Mostra status do workspace
|
|
16
|
+
|
|
17
|
+
Example:
|
|
18
|
+
>>> from wally_dev import __version__
|
|
19
|
+
>>> print(__version__)
|
|
20
|
+
0.1.1
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
__version__ = "0.1.1"
|
|
24
|
+
__author__ = "Equallyze"
|
|
25
|
+
__email__ = "contato@equallyze.com"
|
|
26
|
+
|
|
27
|
+
from .config import Settings
|
|
28
|
+
from .exceptions import WallyDevError
|
|
29
|
+
|
|
30
|
+
__all__ = [
|
|
31
|
+
"__version__",
|
|
32
|
+
"__author__",
|
|
33
|
+
"__email__",
|
|
34
|
+
"Settings",
|
|
35
|
+
"WallyDevError",
|
|
36
|
+
]
|