We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a62e8 commit faaabbaCopy full SHA for faaabba
setup.cfg
@@ -1,6 +1,6 @@
1
[metadata]
2
name = pesn-sdk
3
-version = 1.2.0
+version = 1.2.1
4
author = Quantori
5
author_email = contact@quantori.com
6
description = Quantori Python SDK for PerkinElmer Signals Notebook
tests/entities/test_bio_sequence.py
@@ -1,4 +1,5 @@
import json
+import os
import arrow
import pytest
@@ -9,7 +10,8 @@
9
10
11
@pytest.fixture
12
def bio_seq_content():
- with open('tests/entities/test_files/bio_sequence_content.gb') as bio_seq_file:
13
+ path = os.path.join(os.path.dirname(__file__), 'test_files/bio_sequence_content.gb')
14
+ with open(path, 'r') as bio_seq_file:
15
file = File(bio_seq_file)
16
return file.content
17
0 commit comments