Skip to content

Commit c5fce21

Browse files
authored
Merge pull request #369 from pymzml/feature/clean_build_artifacts
Save GSGW test output file to example_data
2 parents cb8a479 + c5e2648 commit c5fce21

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.github/workflows/tox_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python: ['3.8', '3.9', '3.10']
24+
python: ['3.9', '3.10', '3.11']
2525
steps:
2626
- uses: actions/checkout@v4
2727
- name: Setup Python

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ General information
2929

3030
Module to parse mzML data in Python based on cElementTree
3131

32-
Copyright 2010-2021 by:
32+
Copyright 2010-2024 by:
3333

3434
| M. Kösters,
3535
| J. Leufken,

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation
22
numpy
33
plotly==4.12.0
4-
pynumpress==0.0.5
4+
pynumpress==0.0.9
55
regex
6-
ms_deisotope==0.0.14
6+
ms_deisotope==0.0.14

tests/file_io_indexed_gzip_writer_test.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ def setUp(self):
3030
def tearDown(self):
3131
""" """
3232
self.Writer.close()
33-
os.remove(os.path.abspath(os.path.join(".", "tests", "data", "unittest.mzml")))
33+
try:
34+
os.remove(os.path.abspath(os.path.join(".", "tests", "data", "unittest.mzml")))
35+
except FileNotFoundError:
36+
pass
37+
try:
38+
os.remove(os.path.abspath(os.path.join(".", "tests", "data", "unittest2.mzml")))
39+
except FileNotFoundError:
40+
pass
3441

3542
def test_init(self):
3643
self.assertEqual(self.Writer.crc32, 0)
@@ -128,7 +135,9 @@ def test_add_data(self):
128135
"uncompressed",
129136
"CF_07062012_pH8_2_3A.mzML",
130137
)
131-
self.Writer = GSGW(test_file, max_idx=80, max_idx_len=8, max_offset_len=8)
138+
self.Writer = GSGW(test_file, max_idx=80, max_idx_len=8, max_offset_len=8, output_path=os.path.abspath(
139+
os.path.join(".", "tests", "data", "unittest2.mzml")
140+
))
132141
self.Writer.add_data(test_string, "a")
133142
self.Writer.close()
134143
file = open(self.paths[0], "rb")

0 commit comments

Comments
 (0)