* fix flakey tests in authentik / wordpress * make it possible to rerun tests partially -> passed will be skipped, failed will be repeated * improve organization of all outputs (moving, renaming, keeping multiple versions etc.) * add html reports, replace .txt tracebacks * combine all html reports into one * add demo runner with comments for documentation purposes Reviewed-on: local-it-infrastructure/e2e_tests#3 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
30 lines
518 B
Markdown
30 lines
518 B
Markdown
# Clone
|
|
|
|
To clone with submodules, use these git commands:
|
|
|
|
```bash
|
|
git clone --recurse-submodules <repository>
|
|
git submodule update --init // add submodule after normal cloning
|
|
git submodule update --remote // update submodules
|
|
```
|
|
|
|
# Run
|
|
|
|
```bash
|
|
docker compose build
|
|
docker compose run --rm app python ./main.py
|
|
docker compose run --rm app pytest
|
|
# docker-compose up
|
|
```
|
|
|
|
Force rebuild with cache
|
|
|
|
```bash
|
|
docker-compose up --build
|
|
```
|
|
|
|
Force rebuild wtihtout cache
|
|
|
|
```bash
|
|
docker-compose build --no-cache
|
|
```
|