This repository has been archived by the owner on Apr 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from simphony/add-simphony-mayavi
Add the simphony-mayavi plugin
- Loading branch information
Showing
6 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
-e git+https://github.com/simphony/simphony-common.git@0.1.1#egg=simphony | ||
-e git+https://github.com/simphony/simphony-openfoam.git@0.1.0#egg=foam_controlwrapper | ||
-e git+https://github.com/simphony/simphony-jyulb.git@0.1.1#egg=jyu_engine | ||
-e git+https://github.com/simphony/simphony-lammps-md.git@0.1.2#egg=simlammps | ||
git+https://github.com/simphony/simphony-common.git@0.1.1#egg=simphony | ||
git+https://github.com/simphony/simphony-openfoam.git@0.1.0#egg=foam_controlwrapper | ||
git+https://github.com/simphony/simphony-jyulb.git@0.1.1#egg=jyu_engine | ||
git+https://github.com/simphony/simphony-lammps-md.git@0.1.2#egg=simlammps | ||
git+https://github.com/simphony/simphony-mayavi.git@0.1.1#egg=simphony_mayavi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import unittest | ||
import importlib | ||
|
||
PLUGINS = [ | ||
'mayavi_tools'] | ||
|
||
|
||
class TestVisualisationPluginImport(unittest.TestCase): | ||
|
||
def test_plugin_import(self): | ||
for engine in PLUGINS: | ||
importlib.import_module('simphony.visualisation', engine) |