Skip to content

Commit

Permalink
Fixing testing & setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed Apr 14, 2023
1 parent b372c0a commit a68293e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting_and_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
mkdir -p ./reports/junit
# Producction one
pytest biobb_godmd/test/unitests/ --cov=./ --cov-report=xml --ignore-glob=*container.py --ignore-glob=*docker.py --ignore-glob=*singularity.py --junit-xml=./reports/junit/junit.xml --html=./reports/junit/report.html
pytest biobb_godmd/test/unitests/ --cov=biobb_godmd/ --cov-report=xml --ignore-glob=*container.py --ignore-glob=*docker.py --ignore-glob=*singularity.py --junit-xml=./reports/junit/junit.xml --html=./reports/junit/report.html
- name: Generate Tests badge
shell: bash -l {0} # necessary for conda env to be active
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
packages=setuptools.find_packages(exclude=['docs', 'test']),
install_requires=['biobb_common==4.0.0'],
python_requires='>=3.7,<=3.10',
python_requires='>=3.7,<3.10',
entry_points={
"console_scripts": [
"godmd_prep = biobb_godmd.godmd.godmd_prep:main",
Expand All @@ -29,6 +29,8 @@
classifiers=(
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
Expand Down

0 comments on commit a68293e

Please sign in to comment.