diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba897584d..d1e9f64df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,10 @@ jobs: run: poetry install --all-extras - name: Lint with ruff run: poetry run ruff pandasai examples - - name: Run tests with coverage + - name: Run tests + run: + poetry run pytest + - name: Run code coverage run: | poetry run coverage run --source=pandasai -m pytest poetry run coverage xml diff --git a/poetry.toml b/poetry.toml index 8eb0c8019..4a89f357e 100644 --- a/poetry.toml +++ b/poetry.toml @@ -1,3 +1,4 @@ [virtualenvs] in-project = true -path = "." \ No newline at end of file +path = "." +create = true