From 98f933c0e267a6eeeaf15a6f38f7cc30d9f9b8ef Mon Sep 17 00:00:00 2001 From: "shao.xiaoping" Date: Tue, 23 Jan 2024 14:23:06 +0800 Subject: [PATCH] update github yaml --- .github/workflows/python-playwright-pytest-bdd.yml | 4 ++-- .gitignore | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.github/workflows/python-playwright-pytest-bdd.yml b/.github/workflows/python-playwright-pytest-bdd.yml index ec4e7f4..d65ab72 100644 --- a/.github/workflows/python-playwright-pytest-bdd.yml +++ b/.github/workflows/python-playwright-pytest-bdd.yml @@ -41,13 +41,13 @@ jobs: - name: Ensure browsers are installed run: pipenv run python -m playwright install - name: Run test cases - run: pipenv run pytest -s --alluredir=temp -m smoke + run: pipenv run python run.py - uses: actions/upload-artifact@v3 if: always() with: name: playwright-traces_and_results path: | - temp/ + report/ *trace.zip diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5760002 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/logs/* +/temp/* +/report/* +/file/picture/* +/.idea/*