├── .gitignore ├── .gitpod.yml ├── LICENSE ├── README.md ├── atest ├── 01_SimpleTestSuite.robot └── run_atest.sh ├── createPip_whl_tar.sh ├── requirements-dev.txt ├── setup.py └── src └── RetryFailed ├── __init__.py └── retry_failed.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/README.md -------------------------------------------------------------------------------- /atest/01_SimpleTestSuite.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/atest/01_SimpleTestSuite.robot -------------------------------------------------------------------------------- /atest/run_atest.sh: -------------------------------------------------------------------------------- 1 | robot -d results --listener RetryFailed 01_SimpleTestSuite.robot -------------------------------------------------------------------------------- /createPip_whl_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/createPip_whl_tar.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | robotframework>=4.1.0 2 | setuptools 3 | twine -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/setup.py -------------------------------------------------------------------------------- /src/RetryFailed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/src/RetryFailed/__init__.py -------------------------------------------------------------------------------- /src/RetryFailed/retry_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-retryfailed/HEAD/src/RetryFailed/retry_failed.py --------------------------------------------------------------------------------