Skip to content

Commit

Permalink
Check upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
slimovich committed Jun 25, 2020
1 parent 8fcf9b0 commit 4872aa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ test:
.PHONY: lint
lint:
@echo "--> Analyse code"
@[ -d ./.artifacts/ ] && (rm -rf ./.artifacts/)
if [ -d "./.artifacts" ]; then rm -rf ./.artifacts/; fi
mkdir ./.artifacts/
@echo "--> artifacts directory created"
flake8 src/ tests/
mypy src/ tests/

Expand Down
1 change: 0 additions & 1 deletion src/core/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def database() -> None:
# group to manage data base
pass


@database.command(help="create database")
def create() -> int:
return subprocess.call(["alembic", "upgrade", "head"]) # nosec
Expand Down

0 comments on commit 4872aa6

Please sign in to comment.