-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 1.56 KB
/
stable_python3_9.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
name: LoadDensity Stable Python3.9
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 5 * * *"
permissions:
contents: read
jobs:
build_stable_version:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Test Fast HTTP User
run: python ./test/unit_test/user_test/fast_http_user_test.py
- name: TestMulti Action User
run: python ./test/unit_test/user_test/http_user_test.py
- name: Test Callback
run: python ./test/unit_test/callback_test/callback_test.py
- name: Test Create Project
run: python ./test/unit_test/create_project/create_project.py
- name: Test Generate HTML Report
run: python ./test/unit_test/generate_report/generate_html_report.py
- name: Test Generate XML Report
run: python ./test/unit_test/generate_report/generate_xml_report.py
- name: Test Generate JSON Report
run: python ./test/unit_test/generate_report/generate_json_report.py
- name: Test Interval Scheduler
run: python ./test/unit_test/scheduler_test/sec_interval_test.py
- name: Test Cron Scheduler
run: python ./test/unit_test/scheduler_test/sec_cron_test.py
- name: Test Executor
run: python ./test/unit_test/executor_test/execute.py