File tree Expand file tree Collapse file tree 10 files changed +52
-2
lines changed Expand file tree Collapse file tree 10 files changed +52
-2
lines changed Original file line number Diff line number Diff line change 31
31
run : |
32
32
python -m pip install uv
33
33
uv venv
34
- uv pip install ruff pytest pytest-mock coverage pyright django-stubs
34
+ uv pip install -r dev-requirements.txt
35
35
uv pip install .
36
36
- name : Check ruff
37
37
run : |
53
53
run : |
54
54
source .venv/bin/activate
55
55
pytest -s -vv
56
+ - name : Run tach
57
+ run : |
58
+ source .venv/bin/activate
59
+ tach check
60
+
Original file line number Diff line number Diff line change
1
+ tags : ['bridge.cli']
Original file line number Diff line number Diff line change
1
+ tags : ['bridge.framework']
Original file line number Diff line number Diff line change
1
+ tags : ['bridge']
Original file line number Diff line number Diff line change
1
+ tags : ['bridge.platform']
Original file line number Diff line number Diff line change
1
+ tags : ['bridge.service']
Original file line number Diff line number Diff line change
1
+ tags : ['bridge.utils']
Original file line number Diff line number Diff line change
1
+ ruff==0.4.1
2
+ pytest==8.1.1
3
+ pytest-mock==3.14.0
4
+ django-stubs==4.2.7
5
+ pyright==1.1.360
6
+ coverage==7.4.4
7
+ tach==0.1.2
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " python-bridge"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
authors = [
5
5
{
name =
" Caelean Barnes" ,
email =
" [email protected] " },
6
6
{
name =
" Evan Doyle" ,
email =
" [email protected] " },
Original file line number Diff line number Diff line change
1
+ constraints :
2
+ bridge :
3
+ depends_on :
4
+ - bridge.framework
5
+ bridge.cli :
6
+ depends_on :
7
+ - bridge
8
+ - bridge.framework
9
+ - bridge.service
10
+ - bridge.utils
11
+ bridge.framework :
12
+ depends_on :
13
+ - bridge.platform
14
+ - bridge
15
+ - bridge.service
16
+ - bridge.utils
17
+ bridge.platform :
18
+ depends_on :
19
+ - bridge.service
20
+ - bridge
21
+ bridge.service :
22
+ depends_on :
23
+ - bridge.platform
24
+ - bridge
25
+ - bridge.utils
26
+ bridge.utils :
27
+ depends_on :
28
+ - bridge
29
+ exclude :
30
+ - tests
31
+ - docs
32
+ exclude_hidden_paths : true
You can’t perform that action at this time.
0 commit comments