We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95532b commit 08bf33bCopy full SHA for 08bf33b
1 file changed
setup.py
@@ -8,8 +8,16 @@
8
9
readme = os.path.join(curr_path, "README.md")
10
print(f"Reading {readme}")
11
-with open(readme, "r") as fh:
12
- long_description = fh.read()
+try:
+ with open(readme, "r") as fh:
13
+ long_description = fh.read()
14
+except:
15
+ long_description = """
16
+ Testing tool for python with:
17
+ - Test selection/execution
18
+ - Test management
19
+ - Test reporting
20
+ """
21
22
requirements = os.path.join(curr_path, "testipy", "requirements.txt")
23
print(f"Installing {requirements}")
0 commit comments