Skip to content

Commit 9ee734f

Browse files
committed
Fix Makefile
1 parent fe673b9 commit 9ee734f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ clean:
2323
build: clean
2424
@$(activate_venv_if_not_active)
2525
@echo "Building..."
26-
@pip install -U setuptools
26+
@pip install -r requirements-dev.txt
2727
@python setup.py sdist bdist_wheel --universal
2828

2929
install:
@@ -35,7 +35,7 @@ install:
3535
test:
3636
@$(activate_venv_if_not_active)
3737
@echo "Running tests..."
38-
@cd tests; coverage run manage.py test
38+
@cd tests; coverage run --source=webpack_loader manage.py test
3939

4040
publish: build
4141
@echo "Publishing to $(REPOSITORY)..."

0 commit comments

Comments
 (0)