Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.21 KB

README.md

File metadata and controls

52 lines (37 loc) · 1.21 KB

User Acceptance Test Convention

Trip Teknologi's User Acceptance Test Codebase Convention.

Getting Started

Initialization :

curl -sL https://raw.githubusercontent.com/tripteki/uat/main/bin/project | sh -s -- <project>

Configuration :

.
├── <project>/
├──── tests/
├────── _perform_/config/__init__.py
├────── __cli__/config/__init__.py
├────── ___api___/config/__init__.py
├────── ____web____/config/__init__.py
└────── ____mobile____/config/__init__.py

Installation :

Move your current working directory to the outer of project.
Copy <project>/pyproject.toml to current working directory.
Then install it with this command :

$ python3 -m pip install .

Usage

python3 -m <project>

Option

  • --help : Usage.
  • test:performance : Run performance test.
  • test:cli : Run cli test cases.
  • test:api : Run api test cases.
  • test:web : Run web test cases.
  • test:mobile : Run mobile test cases.

Author