Revision ecab1481c2369f2a6b463b8fc34f993edb3bfd12 authored by Johnny.H on 11 August 2020, 22:35:03 UTC, committed by GitHub on 11 August 2020, 22:35:03 UTC
* Fix cannot print log message by chance.

Print log message does not need to make sure test runner process is running.

* Fix: Sometimes error msg is not printed as Error log level

* Disable mac os text ctrl smart input char replace

* Fix invalid cases selection bug

here's the reproduce step:

1. select one case, and run
2. go to text edit and apply some changes
3. the case will become unchecked
4. click run, you'll find that case is still selected

* Remove useless import

* Update CHANGELOG

* Update CHANGELOG

* Update CHANGELOG

Co-authored-by: Hélio Guilherme <helioxentric@gmail.com>
1 parent 4579990
Raw File
tox.ini
[tox]
envlist = py{36,37,38}

[testenv]
setenv = APPDATA = {toxinidir}/AppData
description = Unit tests
deps = invoke
commands = pip install -r requirements-dev.txt
           pip install -r requirements.txt
           pip install .
           invoke test
back to top