Skip to content

Commit ce237a7

Browse files
packages and pythonpath
1 parent 64e2b04 commit ce237a7

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,12 @@ jobs:
3939
- name: Run pytest
4040
run: |
4141
curl -sSL https://install.python-poetry.org | python
42-
poetry install --no-root
42+
poetry install
4343
poetry run python -m pytest --disable-pytest-warnings
4444
env:
4545
FTRACK_SERVER: ${{ secrets.FTRACK_SERVER }}
4646
FTRACK_API_USER: ${{ secrets.FTRACK_API_USER }}
4747
FTRACK_API_KEY: ${{ secrets.FTRACK_API_KEY_UNITTEST }}
48-
PYTHONPATH: ./source
4948

5049
build:
5150
runs-on: ubuntu-latest

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,3 @@ Thumbs.db
4343
.cache
4444
test-reports/*
4545
.pytest_cache/*
46-
47-
# SCM VERSION
48-
source/ftrack_api/_version.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Python API for ftrack."
55
authors = ["ftrack <support@ftrack.com>"]
66
readme = "README.rst"
77
packages = [
8-
{ include = "source/ftrack_api" },
8+
{ include = "ftrack_api", from = "source" },
99
]
1010

1111
[tool.poetry-dynamic-versioning]

0 commit comments

Comments
 (0)