From 908fd928fc8eb043b7d85940c3e9af9abde4a890 Mon Sep 17 00:00:00 2001 From: xiaoweii Date: Mon, 29 Jan 2024 18:04:57 +0800 Subject: [PATCH 1/2] fix: python version --- .github/workflows/integration_test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 5f5e311..b9a1fe0 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -58,8 +58,7 @@ jobs: virtualenv workspace cd workspace source bin/activate - pip install pytest - pip install Appium-Python-Client + pip install -r ../../requirements.txt mkdir tests cp ../appium/shopping_test.py tests/ find tests/ From c8da6cf42467a9ff39650ba0ea0185b231b72a8c Mon Sep 17 00:00:00 2001 From: Xiaowei Zhu <33129495+zhu-xiaowei@users.noreply.github.com> Date: Mon, 29 Jan 2024 18:31:36 +0800 Subject: [PATCH 2/2] ci: update integration_test.yml for requirements path --- .github/workflows/integration_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index b9a1fe0..180815b 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -58,7 +58,7 @@ jobs: virtualenv workspace cd workspace source bin/activate - pip install -r ../../requirements.txt + pip install -r ../requirements.txt mkdir tests cp ../appium/shopping_test.py tests/ find tests/ @@ -107,4 +107,4 @@ jobs: name: test-result path: | integrationtest/devicefarm/report/ - integrationtest/devicefarm/MyAndroidAppTest-*/** \ No newline at end of file + integrationtest/devicefarm/MyAndroidAppTest-*/**