Skip to content

Commit faaabba

Browse files
Dmitriy.IgnatyevDmitriy.Ignatyev
authored andcommitted
- fix path to file in test_bio_sequence
- up version from 1.2.0 to 1.2.1
1 parent f6a62e8 commit faaabba

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pesn-sdk
3-
version = 1.2.0
3+
version = 1.2.1
44
author = Quantori
55
author_email = contact@quantori.com
66
description = Quantori Python SDK for PerkinElmer Signals Notebook

tests/entities/test_bio_sequence.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import json
2+
import os
23

34
import arrow
45
import pytest
@@ -9,7 +10,8 @@
910

1011
@pytest.fixture
1112
def bio_seq_content():
12-
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:
1315
file = File(bio_seq_file)
1416
return file.content
1517

0 commit comments

Comments
 (0)