-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from ruben-arts/main
Add `pixi` as an workflow/package manager
- Loading branch information
Showing
5 changed files
with
3,460 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# GitHub syntax highlighting | ||
pixi.lock linguist-language=YAML linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,4 +162,6 @@ cython_debug/ | |
|
||
*.sqlite | ||
# isort configuration | ||
.isort.cfg | ||
.isort.cfg# pixi environments | ||
.pixi | ||
*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,3 +147,33 @@ py -3 -m venv venv && venv\scripts\activate | |
``` | ||
|
||
4. Code, have fun, contribute ... 💪 🙏 | ||
|
||
|
||
### When using `pixi` use these instructions | ||
1. Check out the repo | ||
``` | ||
git clone [email protected]:PyBites-Open-Source/search.git | ||
cd search | ||
``` | ||
|
||
2. Run the tool | ||
``` | ||
# Find fastapi mentions in all pybites content | ||
pixi run all fastapi | ||
# Find fastapi only in the podcasts | ||
pixi run podcast fastapi | ||
``` | ||
|
||
3. Test on all python version | ||
``` | ||
# Installs and runs 3 test environments including different versions of python. | ||
pixi run test | ||
# If you want to test one python version run | ||
pixi run test39 | ||
pixi run test310 | ||
pixi run test311 | ||
``` | ||
|
||
4. Code, have fun, contribute ... 💪 🙏 |
Oops, something went wrong.