-
Notifications
You must be signed in to change notification settings - Fork 279
62 lines (55 loc) · 1.63 KB
/
test-web-funcs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 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: "Unit Test: web-based functions"
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
# Web crawlers might be outdated because of website updating, so run periodically to follow the changes
- cron: '9 9 * * 3,6,0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test-web-crawlers:
runs-on: windows-latest
env:
PYTHONIOENCODING: "utf-8"
PYTEST_ADDOPTS: "-rA --color=yes --tb=long --showlocals"
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install poetry
run: pipx install poetry
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'poetry'
- name: Setup dynamic versioning
run: poetry self add poetry-dynamic-versioning
- name: Install dependencies
run: |
poetry install
- name: Switch code page
run: |
chcp 65001
- name: Public IP
id: ip
uses: haythem/[email protected]
- name: Test proxyfree.py
run: |
poetry run pytest unittest/test_proxyfree.py
- name: Test web crawlers
run: |
poetry run pytest unittest/test_crawlers.py
- name: Upload log as artifact
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: JavSP-web-funcs.log
path: javspn/JavSP.log