Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Modernize CI #726

Merged
merged 3 commits into from
Mar 22, 2024
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
46 changes: 14 additions & 32 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,20 @@
name: bloom-ci
---
name: Run tests

on:
on: # yamllint disable-line rule:truthy
push:
branches: ['master']
pull_request:
branches: ['*']
schedule:
- cron: '40 7 * * 0'

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: [3.7, 3.8, 3.9]
include:
- os: ubuntu-18.04
python: 2.7
- os: ubuntu-18.04
python: 3.6
name: bloom tests
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install PyYAML argparse empy rosdep vcstools catkin-pkg python-dateutil packaging
python -m pip install nose coverage pep8
- name: Run tests
run: |
BLOOM_VERBOSE=1 python setup.py nosetests -s --tests test
pytest:
uses: ros-infrastructure/ci/.github/workflows/pytest.yaml@main
with:
matrix-filter: >-
del(.matrix.os[] | select(contains("windows"))) | del(.matrix.python[] |
select(contains("3.10") or contains("3.11") or contains("3.12")))
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yamllint -f github .
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,5 @@ all_files = 1
[upload_sphinx]
upload-dir = doc/build/html

# [nosetests]
# where=test
# with-coverage=0
# cover-package=nose
# debug=nose.loader
# pdb=0
# pdb-failures=0
[tool:pytest]
junit_suite_name = bloom
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
install_requires = [
'catkin_pkg >= 0.4.3',
'setuptools',
'empy',
'empy < 4',
'packaging',
'python-dateutil',
'PyYAML',
Expand Down Expand Up @@ -36,6 +36,11 @@
},
include_package_data=True,
install_requires=install_requires,
extras_require={
'test': [
'pep8',
'pytest',
]},
author='Tully Foote, William Woodall',
author_email='tfoote@openrobotics.org, william@openrobotics.org',
maintainer='William Woodall',
Expand Down