Skip to content

Commit

Permalink
Add poetry.toml, additional poetry install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviagyg committed Nov 24, 2023
1 parent 84f5729 commit 4a42bad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
extra_args: --hook-stage manual --all-files
- name: Install requirements
run: |
pip install poetry
poetry install
pip install --upgrade pip
pip install poetry~=1.3.2
poetry config --local virtualenvs.create false
poetry install --no-interaction --no-ansi
- name: Run Tests
run: |
pytest .
3 changes: 3 additions & 0 deletions poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[virtualenvs]
create = true
in-project = true

0 comments on commit 4a42bad

Please sign in to comment.