Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e147df2

Browse filesBrowse files
authored
Update README.md
Add a section to advise using only pip instead of poetry.
1 parent 2f06e9d commit e147df2
Copy full SHA for e147df2

File tree

Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,19 @@ steps:
330330
- run: poetry run pytest
331331
```
332332
333+
**If you only need poetry install, consider using pip:**
334+
```yaml
335+
steps:
336+
- uses: actions/checkout@v3
337+
- uses: actions/setup-python@v4
338+
with:
339+
python-version: '3.9'
340+
cache: 'pip'
341+
cache-dependency-path: 'poetry.lock'
342+
- run: pip install .
343+
- run: pytest
344+
```
345+
333346
**Using wildcard patterns to cache dependencies**
334347
```yaml
335348
steps:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.