Merge pull request #2062 from hroff-1902/remove-pytest-warning1

minor: eliminate warnings in pytest
This commit is contained in:
Matthias 2019-07-26 14:40:11 +02:00 committed by GitHub
commit 908a0277e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,6 +366,7 @@ def test_strategy_override_use_sell_profit_only(caplog):
) in caplog.record_tuples ) in caplog.record_tuples
@pytest.mark.filterwarnings("ignore:deprecated")
def test_deprecate_populate_indicators(result): def test_deprecate_populate_indicators(result):
default_location = path.join(path.dirname(path.realpath(__file__))) default_location = path.join(path.dirname(path.realpath(__file__)))
resolver = StrategyResolver({'strategy': 'TestStrategyLegacy', resolver = StrategyResolver({'strategy': 'TestStrategyLegacy',
@ -398,6 +399,7 @@ def test_deprecate_populate_indicators(result):
in str(w[-1].message) in str(w[-1].message)
@pytest.mark.filterwarnings("ignore:deprecated")
def test_call_deprecated_function(result, monkeypatch): def test_call_deprecated_function(result, monkeypatch):
default_location = path.join(path.dirname(path.realpath(__file__))) default_location = path.join(path.dirname(path.realpath(__file__)))
resolver = StrategyResolver({'strategy': 'TestStrategyLegacy', resolver = StrategyResolver({'strategy': 'TestStrategyLegacy',