This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Add uv at the beginning of installation instruction
tags/v0.3.10^2
haixuantao
haixuanTao
11 months ago
parent
e854af33b0
commit
8617357fe4
2 changed files
with
8 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
.github/workflows/ci.yml
+5
-4
binaries/cli/src/template/python/__node-name__/README.md
+ 3
- 3
.github/workflows/ci.yml
View File
@@ -317,9 +317,9 @@ jobs:
cd test_python_project
# Check Compliancy
ruff check .
pip install -e ./*/
pytest
uv pip install -e ./*/
uv run ruff check .
uv run
pytest
export OPERATING_MODE=SAVE
dora up
+ 5
- 4
binaries/cli/src/template/python/__node-name__/README.md
View File
@@ -5,7 +5,8 @@
- Install it with pip:
```bash
pip install -e .
uv venv -p 3.11 --seed
uv pip install -e .
```
## Contribution Guide
@@ -13,19 +14,19 @@ pip install -e .
- Format with [ruff](https://docs.astral.sh/ruff/):
```bash
ruff check . --fix
uv run
ruff check . --fix
```
- Lint with ruff:
```bash
ruff check .
uv run
ruff check .
```
- Test with [pytest](https://github.com/pytest-dev/pytest)
```bash
pytest . # Test
uv run
pytest . # Test
```
## YAML Specification
Write
Preview
Loading…
Cancel
Save