-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regression testing is expanded (#54)
* Added a github action to build and install. * Test on more python versions. * Test the devel branch * Added a missing requirement to fix tests * Test on Windows and MacOS too
- Loading branch information
Showing
4 changed files
with
74 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Python modules | ||
|
||
on: | ||
push: | ||
branches: ["main", "devel"] | ||
pull_request: | ||
branches: ["main", "devel"] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
python-version: ["3.9", "3.10", "3.11"] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: actions/cache@v3 | ||
id: cache | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.*') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
# - name: Install dependencies | ||
# run: | | ||
# python -m pip install --upgrade pip build | ||
# # python -m pip install -r partcad/requirements.txt | ||
# # python -m pip install -r partcad-cli/requirements.txt | ||
- name: Prepare environments | ||
run: | | ||
python -m pip install --upgrade pip build | ||
mkdir .venv | ||
python -m venv .venv/build | ||
(. .venv/build/bin/activate && python -m pip install --upgrade pip build; deactivate) | ||
python -m venv .venv/build-cli | ||
(. .venv/build-cli/bin/activate && python -m pip install --upgrade pip build; deactivate) | ||
python -m venv .venv/install | ||
(. .venv/install/bin/activate && python -m pip install --upgrade pip build; deactivate) | ||
- name: Test building and packaging | ||
run: | | ||
(. .venv/build/bin/activate && cd partcad && python -m build; deactivate) | ||
(. .venv/build-cli/bin/activate && python -m pip install partcad/dist/partcad-[0-9].[0-9]*.[0-9]*-py3-none-any.whl; deactivate) | ||
(. .venv/build-cli/bin/activate && cd partcad-cli && python -m build; deactivate) | ||
- name: Test installation | ||
run: | | ||
(. .venv/install/bin/activate && python -m pip install partcad/dist/partcad-[0-9].[0-9]*.[0-9]*-py3-none-any.whl; deactivate) | ||
(. .venv/install/bin/activate && python -m pip install partcad-cli/dist/partcad_cli-[0-9].[0-9]*.[0-9]*-py3-none-any.whl; deactivate) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ ruamel.yaml>=0.18.5 | |
packaging>=23.1 | ||
setuptools | ||
jinja2 | ||
requests |
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