e2e_tests/README.md
2023-11-30 16:34:31 +01:00

46 lines
730 B
Markdown

# GIT 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 without Docker
### Installation
Create a python environment and install all dependencies via
```bash
pip install -r requirements.txt
```
Run the script with
```bash
python main.py
```
# Run with Docker
```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
```