File tree Expand file tree Collapse file tree 2 files changed +26
-25
lines changed Expand file tree Collapse file tree 2 files changed +26
-25
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- python-version : ["3.10","3.11"]
10
+ python-version : ["3.10", "3.11"]
11
11
12
12
steps :
13
- - uses : actions/checkout@v4
14
- - name : Set up Python ${{ matrix.python-version }}
15
- uses : actions/setup-python@v5
16
- with :
17
- python-version : ${{ matrix.python-version }}
13
+ - uses : actions/checkout@v4
14
+ - name : Set up Python ${{ matrix.python-version }}
15
+ uses : actions/setup-python@v5
16
+ with :
17
+ python-version : ${{ matrix.python-version }}
18
18
19
- - name : Install pdm
20
- run : pipx install pdm
19
+ - name : Install pdm
20
+ run : pipx install pdm
21
21
22
- - name : Set up cache
23
- uses : actions/cache@v4.0.2
24
- with :
25
- path : .venv
26
- key : venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27
- - name : Install dependencies
28
- run : |
29
- pdm install
22
+ - name : Set up cache
23
+ uses : actions/cache@v4.0.2
24
+ with :
25
+ path : .venv
26
+ key : venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27
+ - name : Install dependencies
28
+ run : |
29
+ pdm install
30
30
31
- - name : Run test and code styles
32
- run : |
33
- pdm test
34
- pdm cleanup
31
+ - name : Run test and code styles
32
+ run : |
33
+ pdm test
34
+ pdm cleanup
35
35
36
+ - name : deploy docs
37
+ run : pdm docs-deploy
Original file line number Diff line number Diff line change 5
5
[ ![ Build status] ( https://github.com/fluent-qa/fluentqa-pdao/workflows/build/badge.svg?branch=main&event=push )] ( https://github.com/fluent-qa/fluentqa-pdao/actions/workflows/build.yml/badge.svg )
6
6
![ Coverage Report] ( assets/images/coverage.svg )
7
7
8
- ` fluentqa_pdao ` is a Python package for database operation
8
+ ` qpydao ` is a Python package for database operation
9
9
10
10
</div >
11
11
12
12
## Features:
13
13
14
- 1 . [X] easy to connect database
14
+ 1 . [X] easy to connect database
15
15
2 . [X] easy to do sql operations CRUD
16
16
3 . [X] easy to support different mapper to python class
17
17
4 . [X] easy to generate sql and create sql version
@@ -40,8 +40,8 @@ qpydao = { git = "https://github.com/fluent-qa/fluentqa-pdao.git", branch = "mai
40
40
- [X] 支持多数据库
41
41
4. event listener on entity change
42
42
5. code generation
43
- 6. CRUD operation
44
- 7. Module Registration and Auto Injection
43
+ 6. CRUD operation
44
+ 7. Module Registration and Auto Injection
45
45
46
46
# # 使用用例
47
47
@@ -130,4 +130,3 @@ def test_repo():
130
130
131
131
integrate with dl-sql:
132
132
- [dl-sql](https://github.com/adobe/dy-sql.git)
133
-
You can’t perform that action at this time.
0 commit comments