Skip to content

Commit 77645ca

Browse files
committed
[CI/CD](godmd): Adapting conf.yml to the new confReader
1 parent 01176cb commit 77645ca

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,15 @@ com_crashlytics_export_strings.xml
9696
.LSOverride
9797

9898
*.bk
99+
100+
# MyPy
101+
.mypy_cache/
102+
103+
# PyCharm
104+
.idea/
105+
106+
# VS Code
107+
.vscode/
108+
109+
# Pytest
110+
.pytest_cache/

biobb_godmd/py.typed

Whitespace-only changes.

biobb_godmd/test/conf.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
working_dir_path: /tmp/biobb/unitests
1+
global_properties:
2+
working_dir_path: /tmp/biobb/unitests
23

34
# godmd
45

biobb_godmd/test/unitests/test_godmd/test_godmd_prep.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# type: ignore
12
from biobb_common.tools import test_fixtures as fx
23
from biobb_godmd.godmd.godmd_prep import godmd_prep
34

biobb_godmd/test/unitests/test_godmd/test_godmd_run.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# type: ignore
12
from biobb_common.tools import test_fixtures as fx
23
from biobb_godmd.godmd.godmd_run import godmd_run
34

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"Bioexcel": "https://bioexcel.eu/"
1919
},
2020
packages=setuptools.find_packages(exclude=['docs', 'test']),
21+
package_data={'biobb_godmd': ['py.typed']},
2122
install_requires=['biobb_common==4.2.0'],
2223
python_requires='>=3.8',
2324
entry_points={
@@ -26,13 +27,14 @@
2627
"godmd_run = biobb_godmd.godmd.godmd_run:main"
2728
]
2829
},
29-
classifiers=(
30-
"Development Status :: 3 - Alpha",
30+
classifiers=[
31+
"Development Status :: 5 - Production/Stable",
3132
"Programming Language :: Python :: 3.8",
3233
"Programming Language :: Python :: 3.9",
3334
"Programming Language :: Python :: 3.10",
3435
"License :: OSI Approved :: Apache Software License",
3536
"Operating System :: MacOS :: MacOS X",
3637
"Operating System :: POSIX",
37-
),
38+
"Operating System :: Unix"
39+
],
3840
)

0 commit comments

Comments
 (0)