File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
3+ name : Python testing
4+
5+ on :
6+ push :
7+ branches : [ "feature/2_semantic_python" ]
8+ # pull_request:
9+ # branches: [ "main" ]
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ build :
16+
17+ runs-on : ubuntu-latest
18+
19+ steps :
20+ - uses : actions/checkout@v3
21+ - name : Set up Python 3.8
22+ uses : actions/setup-python@v3
23+ with :
24+ python-version : " 3.8"
25+ - name : Install dependencies
26+ run : |
27+ python -m pip install --upgrade pip
28+ pip install pytest cupy
29+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30+ - name : Test with pytest
31+ run : |
32+ cd elevation_mapping_cupy/script/elevation_mapping_cupy/tests/
33+ pytest
Original file line number Diff line number Diff line change 11# Elevation Mapping cupy
22
3+ ![ python tests] ( https://github.com/leggedrobotics/elevation_mapping_semantic_cupy/actions/workflows/python-tests.yml/badge.svg )
34## Overview
45
56This is a ROS package for elevation mapping on GPU. The elevation mapping code is written in python and uses cupy for GPU computation. The
Original file line number Diff line number Diff line change 44dataclasses
55ruamel.yaml
66opencv-python
7+ simple_parsing
78
89###### Requirements with Version Specifiers ######`
910shapely == 1.7.1
You can’t perform that action at this time.
0 commit comments