mirror of
https://github.com/jonasrosland/gitmirror.git
synced 2025-05-10 11:55:34 +02:00
16 lines
No EOL
387 B
Bash
Executable file
16 lines
No EOL
387 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Install test dependencies
|
|
pip install -r test-requirements.txt
|
|
|
|
# Run unit tests
|
|
echo "Running unit tests..."
|
|
python -m pytest tests/unit -v
|
|
|
|
# Run integration tests
|
|
echo "Running integration tests..."
|
|
python -m pytest tests/integration -v
|
|
|
|
# Run all tests with coverage
|
|
echo "Running all tests with coverage..."
|
|
python -m pytest --cov=gitmirror --cov-report=term-missing |