Skip to content

Commit

Permalink
Merge branch 'master' into remove_scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
JoranAngevaare authored Dec 3, 2021
2 parents 1afb399 + d8e96f9 commit 18de68f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_autoprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ def tearDown(self) -> None:
print(f'rm {path}')

def test_amstraxer(self):
"""Run
```python amstrax.py --some options```
This should make some raw-data that we will check is stored afterwards
"""
self.get_test_data()
target = [p for p in self.st._plugin_class_registry.keys() if 'raw' in p][0]
run_id = self.run_id
Expand All @@ -60,6 +65,10 @@ def test_amstraxer(self):
assert self.st.is_stored(run_id, target)

def test_amstraxer_for_coveralls(self):
"""
Same as `test_amstraxer` but now in such a way that coveralls
understands that we are using this code
"""
self.get_test_data()
target = [p for p in self.st._plugin_class_registry.keys() if 'raw' in p][0]
run_id = self.run_id
Expand Down

0 comments on commit 18de68f

Please sign in to comment.