From 3936c4b60143261c448a18ba3a9c98301854bb59 Mon Sep 17 00:00:00 2001 From: petrush <petrus.hyvonen@sscspace.com> Date: Mon, 18 Sep 2017 18:58:31 +0200 Subject: [PATCH] Pythonwrapper build scripts --- orekit-conda-recipe/pyhelpers.py | 4 ++++ orekit-conda-recipe/run_test.bat | 14 +++++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/orekit-conda-recipe/pyhelpers.py b/orekit-conda-recipe/pyhelpers.py index ab0cc43..9d2e8c3 100644 --- a/orekit-conda-recipe/pyhelpers.py +++ b/orekit-conda-recipe/pyhelpers.py @@ -16,6 +16,10 @@ """ This document contains classes that are useful for using the orekit library in Python. """ +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + # Set up the orekit namespace import orekit diff --git a/orekit-conda-recipe/run_test.bat b/orekit-conda-recipe/run_test.bat index 2681707..70245f6 100644 --- a/orekit-conda-recipe/run_test.bat +++ b/orekit-conda-recipe/run_test.bat @@ -1,3 +1,11 @@ -set JCC_JDK=C:\Program Files (x86)\Java\jdk1.6.0_35 -set JAVA_HOME=%JCC_JDK% -set PATH=%JCC_JDK%\jre\bin\client;%JCC_JDK%\bin;%JCC_JDK%\lib;%PATH% \ No newline at end of file +cd test +python AltitudeDetectorTest.py +python NodeDetectorTest.py +python ImpulseManeuverTest.py +python BackAndForthDetectorTest.py +python KeplerianConverterTest.py +python EventHandlerTest.py +python AbstractDetectorTest.py +python EventDetectorTest.py +python SmallManeuverAnalyticalModelTest.py +python GroundFieldOfViewDetectorTest.py \ No newline at end of file -- GitLab