Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit 2c8b191

Browse files
committed
#3613 fix book failing on travis
1 parent 8b648fe commit 2c8b191

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

MANIFEST.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ graft lino_react/react/
22
prune docs
33

44
prune lino_react/react/components
5-
prune lino_react/projects
5+
# prune lino_react/projects
66

77
prune dist
88
prune cypress
99
prune tests
1010
prune node_modules
11-
#
11+
#

lino_react/setup_info.py

+9-7
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,17 @@
4545
SETUP_INFO.update(packages=[str(n) for n in """
4646
lino_react
4747
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
5548
""".splitlines() if n])
5649

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+
5759
SETUP_INFO.update(
5860
zip_safe=False,
5961
include_package_data=True)

tests/test_packages.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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'])

0 commit comments

Comments
 (0)