Skip to content

Commit

Permalink
test editable build
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Dec 30, 2023
1 parent 69cd672 commit 74641fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
- name: Build Pillow
run: |
$FLAGS="-C raqm=vendor -C fribidi=vendor"
cmd /c "winbuild\build\build_env.cmd && $env:pythonLocation\python.exe -m pip install -v $FLAGS ."
cmd /c "winbuild\build\build_env.cmd && $env:pythonLocation\python.exe -m pip install -v $FLAGS -e ."
& $env:pythonLocation\python.exe selftest.py --installed
shell: pwsh

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ help:

.PHONY: install
install:
python3 -m pip -v install .
python3 -m pip -v install -e .
python3 selftest.py

.PHONY: install-coverage
install-coverage:
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip -v install .
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip -v install -e .
python3 selftest.py

.PHONY: debug
Expand Down

0 comments on commit 74641fb

Please sign in to comment.