Skip to content

Commit

Permalink
Merge pull request #67 from quantori/feature/bulkexporterror2
Browse files Browse the repository at this point in the history
Feature/bulkexporterror2
  • Loading branch information
quantori-pokidovea authored Feb 23, 2023
2 parents 4b8fe63 + 2172af7 commit 0110bfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pesn-sdk
version = 1.2.0
version = 1.2.2
author = Quantori
author_email = [email protected]
description = Quantori Python SDK for PerkinElmer Signals Notebook
Expand Down Expand Up @@ -67,3 +67,4 @@ ignore =
# may be undefined, or defined from star imports
F405,


4 changes: 3 additions & 1 deletion tests/entities/test_bio_sequence.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
import os

import arrow
import pytest
Expand All @@ -9,7 +10,8 @@

@pytest.fixture
def bio_seq_content():
with open('tests/entities/test_files/bio_sequence_content.gb') as bio_seq_file:
path = os.path.join(os.path.dirname(__file__), 'test_files/bio_sequence_content.gb')
with open(path, 'r') as bio_seq_file:
file = File(bio_seq_file)
return file.content

Expand Down

0 comments on commit 0110bfa

Please sign in to comment.