Skip to content
Snippets Groups Projects
Unverified Commit b644fd5a authored by Kelvin Rodriguez's avatar Kelvin Rodriguez Committed by GitHub
Browse files

passing tests (#618)

* passing tests

* removed upload coverage since we dont even pay attention to it anyways right now
parent 64f8c6ac
No related branches found
No related tags found
No related merge requests found
...@@ -52,13 +52,13 @@ jobs: ...@@ -52,13 +52,13 @@ jobs:
run: | run: |
cd build cd build
ctest -VV ctest -VV
- name: Upload Coverage # - name: Upload Coverage
uses: codecov/codecov-action@v1 # uses: codecov/codecov-action@v1
with: # with:
token: ${{ secrets.CODECOV_TOKEN }} # token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true # fail_ci_if_error: true
verbose: true # verbose: true
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' # if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
Build-Docs: Build-Docs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
......
...@@ -142,7 +142,7 @@ class ApolloMetricIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, NoDisto ...@@ -142,7 +142,7 @@ class ApolloMetricIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, NoDisto
class ApolloPanIsisLabelIsisSpiceDriver(LineScanner, IsisLabel, IsisSpice, NoDistortion, Driver): class ApolloPanIsisLabelIsisSpiceDriver(LineScanner, IsisLabel, IsisSpice, NoDistortion, Driver):
@property @property
def instrument_name(self): def instrument_id(self):
""" """
The name of the instrument. The name of the instrument.
...@@ -158,6 +158,18 @@ class ApolloPanIsisLabelIsisSpiceDriver(LineScanner, IsisLabel, IsisSpice, NoDis ...@@ -158,6 +158,18 @@ class ApolloPanIsisLabelIsisSpiceDriver(LineScanner, IsisLabel, IsisSpice, NoDis
return id_lookup[super().instrument_id] return id_lookup[super().instrument_id]
@property
def instrument_name(self):
"""
The name of the instrument.
Returns
-------
str
The short text name for the instrument
"""
return "APOLLO PANORAMIC CAMERA"
@property @property
def sensor_model_version(self): def sensor_model_version(self):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment