Closed lk-geimfari closed 6 years ago
An exception here:
with open('dev_requirements.txt') as f:
tests_requirements = f.read().splitlines()
I think that it's can be easily fixed like that:
try:
with open('dev_requirements.txt') as f:
tests_requirements = f.read().splitlines()
except FileNotFoundError:
tests_requirements = []