diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-11-13 20:56:35 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2016-11-13 21:11:28 +0900 |
commit | 1561589216f36de18ed3b99464f6a5c7533e65a5 (patch) | |
tree | b8eb52004e966211473508a23b75ddf412fef146 /setup.py | |
parent | 410c02da73adde9e14b82bd97202a759e743cd64 (diff) | |
download | buildstream-1561589216f36de18ed3b99464f6a5c7533e65a5.tar.gz |
setup.py: Now require pytest-datafiles for tests
A convenience module for staging data files to a directory
for running tests which integrates as a pytest fixture.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,5 +39,5 @@ setup(name='buildstream', 'argparse' ], setup_requires=['pytest-runner'], - tests_require=['pytest'], + tests_require=['pytest-datafiles', 'pytest'], zip_safe=False) |