Skip to content

Commit 5108359

Browse files
committed
test: install package in ci/cd without option -e
1 parent 9a7bc8d commit 5108359

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
docker compose version
3232
python3 -m pip install --upgrade pip
3333
pip install flake8 pytest
34-
pip install -e .
34+
pip install .
3535
3636
- name: Lint with flake8
3737
run: |

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pip install build
3131
echo "github.ref:"
3232
echo "$GITHUB_REF"
33-
pip install -e .
33+
pip install .
3434
- name: Generate SensorThings model (OData)
3535
run: |
3636
python -m frost_sta_client.odata_codegen.install_model_simple
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
name: generated-model
4141
path: |
42-
./**
42+
./
4343
- name: Build package
4444
run: python -m build
4545
# - name: Publish package

0 commit comments

Comments
 (0)