This repository was archived by the owner on Jan 2, 2024. It is now read-only.
File tree 3 files changed +18
-9
lines changed
3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ graft lino_react/react/
2
2
prune docs
3
3
4
4
prune lino_react/react/components
5
- prune lino_react/projects
5
+ # prune lino_react/projects
6
6
7
7
prune dist
8
8
prune cypress
9
9
prune tests
10
10
prune node_modules
11
- #
11
+ #
Original file line number Diff line number Diff line change 45
45
SETUP_INFO .update (packages = [str (n ) for n in """
46
46
lino_react
47
47
lino_react.react
48
- lino_react.projects
49
- lino_react.projects.teamReact
50
- lino_react.projects.teamReact.settings
51
- lino_react.projects.teamReact.tests
52
- lino_react.projects.lydiaReact
53
- lino_react.projects.lydiaReact.settings
54
- lino_react.projects.lydiaReact.tests
55
48
""" .splitlines () if n ])
56
49
50
+ # lino_react.projects
51
+ # lino_react.projects.teamReact
52
+ # lino_react.projects.teamReact.settings
53
+ # lino_react.projects.teamReact.tests
54
+ # lino_react.projects.lydiaReact
55
+ # lino_react.projects.lydiaReact.settings
56
+ # lino_react.projects.lydiaReact.tests
57
+
58
+
57
59
SETUP_INFO .update (
58
60
zip_safe = False ,
59
61
include_package_data = True )
Original file line number Diff line number Diff line change
1
+ from lino .utils .pythontest import TestCase
2
+ from lino_react import SETUP_INFO
3
+
4
+
5
+ class PackagesTests (TestCase ):
6
+ def test_01 (self ):
7
+ self .run_packages_test (SETUP_INFO ['packages' ])
You can’t perform that action at this time.
0 commit comments