Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master' into 2.4.0-…
Browse files Browse the repository at this point in the history
…silent-print

# Conflicts:
#	conf/inner_config.yml
#	config.py
#	core.py
#	diag_cmd.py
#	stdio.py
  • Loading branch information
wayyoungboy committed Aug 12, 2024
2 parents 39ce3a1 + 9d8e7e2 commit 28c358c
Show file tree
Hide file tree
Showing 19 changed files with 3,044 additions and 72 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test_command_scene_configHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# common包下command、scene、config_helper的测试用例
name: Test command_scene_configHelper

on:
push:
branches: "*"
pull_request:
branches: "*"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for proper version detection

- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements3.txt
- name: Run tests
run: python -m unittest discover -s test/common -p 'test_*.py'
30 changes: 30 additions & 0 deletions .github/workflows/test_ssh_client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Ssh Client

on:
push:
branches: "dev*"
pull_request:
branches: "dev*"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for proper version detection

- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements3.txt
- name: Run tests
run: python -m unittest discover -s test/common/ssh_client -p 'test_*.py'
Loading

0 comments on commit 28c358c

Please sign in to comment.