e2e_tests/README.md
Daniel 97ed87c79f [WIP] Add new automated test framework (#1)
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
2023-11-22 21:40:13 +01:00

20 lines
283 B
Markdown

# Readme
```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
```