Skip to content

Commit 08bf33b

Browse files
authored
release v0.9.5 (#27)
1 parent b95532b commit 08bf33b

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

setup.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,16 @@
88

99
readme = os.path.join(curr_path, "README.md")
1010
print(f"Reading {readme}")
11-
with open(readme, "r") as fh:
12-
long_description = fh.read()
11+
try:
12+
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+
"""
1321

1422
requirements = os.path.join(curr_path, "testipy", "requirements.txt")
1523
print(f"Installing {requirements}")

0 commit comments

Comments
 (0)