1
0
mirror of https://github.com/bspeice/metrik synced 2024-11-04 22:48:11 -05:00

Add a pytest log catcher?

This commit is contained in:
Bradlee Speice 2016-08-07 21:55:19 -04:00
parent 90548ffdea
commit 383b969cbc
2 changed files with 2 additions and 8 deletions

View File

@ -38,13 +38,6 @@
<property name="caretWidth" class="java.lang.Integer" /> <property name="caretWidth" class="java.lang.Integer" />
</properties> </properties>
</component> </component>
<component name="MavenImportPreferences">
<option name="generalSettings">
<MavenGeneralSettings>
<option name="mavenHome" value="Bundled (Maven 3)" />
</MavenGeneralSettings>
</option>
</component>
<component name="ProjectLevelVcsManager" settingsEditedManually="false"> <component name="ProjectLevelVcsManager" settingsEditedManually="false">
<OptionsSetting value="true" id="Add" /> <OptionsSetting value="true" id="Add" />
<OptionsSetting value="true" id="Remove" /> <OptionsSetting value="true" id="Remove" />

View File

@ -15,6 +15,7 @@ setup(
'pytest_runner' 'pytest_runner'
], ],
tests_require=[ tests_require=[
'pytest' 'pytest',
'pytest-catchlog'
] ]
) )