letalboy / testrium

Testrium is the pinnacle of testing libraries, designed to elevate your testing experience to heavenly heights. Seamlessly integrating the power and flexibility of modern testing frameworks, ElysianProbe provides an unparalleled suite of tools to ensure your code is flawless.
0 stars 1 forks source link

Create a base setup #3

Closed letalboy closed 3 months ago

letalboy commented 3 months ago

The base setup will handle the cases were we need to setup something one time to do all the tests, for example. Setup a web socket and then we can continue with the tests, thsi way we can do the setup one time and then we can do the other stups inside each test group, this wa we will have a structure like the following:

my_project/
├── tests/
│     ├── setup.py
│     ├── config.yaml
│     ├── test_1/
│     │    ├── config.yaml
│     │    ├── setup.py
│     │    └── tests.py
│     ├── test_2/
│     │    ├── config.yaml
│     │    ├── setup.py
│     │    └── tests.py
│     └── test_3/
│          ├── config.yaml
│          ├── setup.py
│          └── tests.py

With this we can do is setup a websocket host that migh be a API for example, then we test this API using the tests groups for example.

letalboy commented 3 months ago

Done in PR: #7