remove venv/*/ from test bash #131
Workflow file for this run
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: test_python_pkg | |
on: [push, pull_request] | |
jobs: | |
test_on_ubuntu_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version_ubuntu-latest: ["3.10", 3.11] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version_ubuntu-latest }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version_ubuntu-latest }} | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: create folder and venv | |
run: | | |
mkdir -p src/ros2model/ | |
rsync -av --exclude='src' ./ src/ros2model/ | |
python3 -m venv venv --system-site-packages --symlinks | |
- name: Install deps via poetry | |
run: | | |
pip install poetry | |
poetry install -C src/ros2model/ | |
- name: install pytest pytest-cov | |
run: | | |
pip install pytest pytest-cov | |
- name: Test with pytest | |
run: | | |
export COVERAGE=true | |
source venv/bin/activate | |
cd src/ros2model/ | |
./test.sh | |
shell: bash | |
lint: | |
name: pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- name: install pre-commit | |
run: pip install pre-commit | |
- name: pre-commit cache | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pre-commit | |
key: "${{ hashFiles('.pre-commit-config.yaml') }}" | |
- run: pre-commit run --all-files --show-diff-on-failure |