LoadDensity Stable Python3.9 #360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |