├── .gitignore ├── README.rst ├── doc └── img │ ├── chat_on_slack.png │ ├── discussion-qq-qr.png │ └── logo-simple-my-testflow.png ├── requirements.txt ├── res ├── app │ └── com.google.android.calculator.apk └── img │ ├── keyboard-digits-landscape.png │ └── keyboard-digits.png ├── setup.py └── testflow ├── __init__.py ├── lib ├── __init__.py ├── case │ ├── __init__.py │ └── android_app.py └── utils │ ├── __init__.py │ └── installation.py └── scripts ├── __init__.py ├── example.py ├── multitests_one_by_one.py └── multitests_together.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/README.rst -------------------------------------------------------------------------------- /doc/img/chat_on_slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/doc/img/chat_on_slack.png -------------------------------------------------------------------------------- /doc/img/discussion-qq-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/doc/img/discussion-qq-qr.png -------------------------------------------------------------------------------- /doc/img/logo-simple-my-testflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/doc/img/logo-simple-my-testflow.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/app/com.google.android.calculator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/res/app/com.google.android.calculator.apk -------------------------------------------------------------------------------- /res/img/keyboard-digits-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/res/img/keyboard-digits-landscape.png -------------------------------------------------------------------------------- /res/img/keyboard-digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/res/img/keyboard-digits.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/setup.py -------------------------------------------------------------------------------- /testflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testflow/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testflow/lib/case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testflow/lib/case/android_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/testflow/lib/case/android_app.py -------------------------------------------------------------------------------- /testflow/lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testflow/lib/utils/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/testflow/lib/utils/installation.py -------------------------------------------------------------------------------- /testflow/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testflow/scripts/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/testflow/scripts/example.py -------------------------------------------------------------------------------- /testflow/scripts/multitests_one_by_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/testflow/scripts/multitests_one_by_one.py -------------------------------------------------------------------------------- /testflow/scripts/multitests_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/my-testflow/HEAD/testflow/scripts/multitests_together.py --------------------------------------------------------------------------------