Skip to content

Commit

Permalink
Merge 8303d49 into f752c5a
Browse files Browse the repository at this point in the history
  • Loading branch information
ggurioli committed May 18, 2021
2 parents f752c5a + 8303d49 commit fe33ccb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def readme():
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
Expand All @@ -29,7 +28,7 @@ def readme():
license='MIT',
packages=['bladex'],
install_requires=[
'numpy', 'scipy', 'matplotlib', 'Sphinx==1.4', 'sphinx_rtd_theme'
'numpy', 'scipy', 'matplotlib', 'Sphinx', 'sphinx_rtd_theme'
],
test_suite='nose.collector',
tests_require=['nose'],
Expand Down
4 changes: 4 additions & 0 deletions tests/test_shaft.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ def test_generate_solid_02(self):
shaft_solid = sh.generate_solid()
self.assertIsInstance(shaft_solid, TopoDS_Solid)

def test_exception(self):
sh = Shaft("tests/test_datasets/parameters.prm")
sh.generate_solid()

def test_display_01(self):
sh = Shaft("tests/test_datasets/shaft.iges")
sh.display()
Expand Down

0 comments on commit fe33ccb

Please sign in to comment.