Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Use simple-launch-process dependency #5

Merged
merged 1 commit into from
Jun 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@ jobs:
- name: pip
run: |
pip3 install .[test]
- name: test
run: |
python3 -m pytest -s
ubuntu_test_unstable:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: apt
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pip curl
- name: pip
run: |
pip3 install git+https://github.com/johnwason/simple-launch-process.git
pip3 install .[test]
- name: test
run: |
python3 -m pytest -s
Expand All @@ -31,7 +45,17 @@ jobs:
- name: pip
run: |
pip install .[test]
- name: test
run: |
python -m pytest -s
windows_test_unstable:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: pip
run: |
pip install git+https://github.com/johnwason/simple-launch-process.git
pip install .[test]
- name: test
run: |
python -m pytest -s
Expand All @@ -44,8 +68,21 @@ jobs:
python-version: '3.10'
- name: pip
run: |
python -m pip install .[test]
python -m pip install git+https://github.com/johnwason/simple-launch-process.git
python -m pip install .[test]
- name: test
run: |
python -m pytest -s
macos_test_unstable:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: pip
run: |
python -m pip install .[test]
- name: test
run: |
python -m pytest -s
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ license = {text = "Apache-2.0"}
requires-python = ">=3.8"
dependencies = [
"pyyaml",
"appdirs"
"appdirs",
"simple-launch-process"
]
readme = "README.md"

Expand Down