Skip to content

Commit

Permalink
Resolve review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rkent committed Mar 22, 2024
1 parent 580897e commit ff4c6c8
Show file tree
Hide file tree
Showing 17 changed files with 60 additions and 355 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9']

steps:
- name: Checkout
Expand Down Expand Up @@ -40,4 +40,4 @@ jobs:
run: sudo apt update && sudo apt install -y doxygen graphviz

- name: Run tests
run: python -m pytest -s test
run: py.test --verbose test
7 changes: 0 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,3 @@ docs/_build/
# PyBuilder
target/
.pytest_cache

# Editors
.vscode/

# tests
test/packages/**/index.rst
test/packages/**/conf.py
114 changes: 0 additions & 114 deletions test/packages/minimal_publisher_py/CHANGELOG.rst

This file was deleted.

6 changes: 0 additions & 6 deletions test/packages/minimal_publisher_py/README.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

24 changes: 0 additions & 24 deletions test/packages/minimal_publisher_py/package.xml

This file was deleted.

4 changes: 0 additions & 4 deletions test/packages/minimal_publisher_py/setup.cfg

This file was deleted.

39 changes: 0 additions & 39 deletions test/packages/minimal_publisher_py/setup.py

This file was deleted.

6 changes: 6 additions & 0 deletions test/packages/only_python/only_python/python_node.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print('Hi from only_python.')


if __name__ == '__main__':
main()
Loading

0 comments on commit ff4c6c8

Please sign in to comment.