mirror of
https://github.com/Rikj000/MoniGoMani.git
synced 2022-03-06 00:08:05 +03:00
29 lines
639 B
Python
29 lines
639 B
Python
# -*- coding: utf-8 -*-
|
|
# import pytest
|
|
|
|
"""
|
|
This unit test file helps testing modular mgm-hurry code.
|
|
|
|
1. Create unit test for specific functionality
|
|
- Verify unit test succeeds
|
|
2. Split and modularize code. The interface should remain unchanged.
|
|
3. Run unit test
|
|
- Verify unit test still succeeds
|
|
|
|
Also be aware to unit test on code and cli level if differences could occur.
|
|
|
|
Interface mgm-hurry:
|
|
MGMHurry.
|
|
up
|
|
install_freqtrade
|
|
install_mgm
|
|
setup
|
|
cleanup
|
|
download_candle_data
|
|
hyperopt
|
|
hyperopt_show_results
|
|
hyperopt_show_epoch
|
|
backtest
|
|
start_trader
|
|
"""
|