Skip to content

Commit

Permalink
Capture the output
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Apr 22, 2024
1 parent 77c5912 commit e94c9ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_sequencing_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ async def test_query_with_creation_date(self):
await self.slayer.upsert_sample(sample_to_insert)

print(f'\n{date.today()=}')
subprocess.run(['date'], check=True)
stdout = subprocess.check_output(['date'], encoding='ascii')
print(f'date command: {stdout}')

# Query for sequencing group with creation date before today
sgs = await self.sglayer.query(
Expand Down

0 comments on commit e94c9ca

Please sign in to comment.