retesting CI
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
63f60248b3
commit
f34257db00
|
|
@ -11,12 +11,11 @@ pipeline:
|
||||||
- ./scripts/CI/setup.sh
|
- ./scripts/CI/setup.sh
|
||||||
- ./scripts/CI/test.sh
|
- ./scripts/CI/test.sh
|
||||||
|
|
||||||
static analysis:
|
lint:
|
||||||
image: python
|
image: python
|
||||||
group: test
|
group: test
|
||||||
commands:
|
commands:
|
||||||
- pip install -r requirements_test.txt
|
- pip install -r requirements_test.txt
|
||||||
- ./scripts/CI/setup.sh
|
|
||||||
- ./scripts/CI/lint.sh
|
- ./scripts/CI/lint.sh
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
cd lockbox
|
cd lockbox
|
||||||
|
echo "Starting ruff check...\n\n\n"
|
||||||
ruff check --config=./pyproject.toml
|
ruff check --config=./pyproject.toml
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
cd lockbox
|
cd lockbox
|
||||||
|
echo "Starting setup...\n\n\n"
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
cd lockbox
|
cd lockbox
|
||||||
|
printf "Starting pytest run...\n\n\n"
|
||||||
pytest --cov=. --cov-report term-missing --reuse-db
|
pytest --cov=. --cov-report term-missing --reuse-db
|
||||||
Loading…
Reference in New Issue