Skip to content

Commit

Permalink
make: add docker build target
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <mail@florianscherf.de>
  • Loading branch information
fscherf committed Jul 29, 2023
1 parent 17f108d commit b0b89cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL=/bin/bash
PYTHON=python3.10
PYTHON_ENV=env

.PHONY: clean doc dist test ci-test lint isort shell freeze
.PHONY: clean doc dist build test ci-test lint isort shell freeze

# python env ##################################################################
$(PYTHON_ENV): pyproject.toml
Expand All @@ -24,6 +24,9 @@ freeze: | $(PYTHON_ENV)
pip freeze

# tests #######################################################################
build:
docker-compose build $(args)

test:
docker-compose run playwright tox $(args)

Expand Down

0 comments on commit b0b89cc

Please sign in to comment.