Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
fa1c968f
"GUI/View/Plot2D/IntensityDataWidget.h" did not exist on "b960dacd55afbacb4b607f6b86fbcc3f2ecf8462"
Commit
fa1c968f
authored
3 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
Use BaseUtils::Python::import_bornagain in all tests
parent
95f046a3
No related branches found
No related tags found
Loading
Pipeline
#57885
failed
3 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Base/Py/PyUtils.cpp
+4
-2
4 additions, 2 deletions
Base/Py/PyUtils.cpp
Base/Py/PyUtils.h
+1
-1
1 addition, 1 deletion
Base/Py/PyUtils.h
Tests/Functional/PyEmbedded/Tests.cpp
+2
-17
2 additions, 17 deletions
Tests/Functional/PyEmbedded/Tests.cpp
with
7 additions
and
20 deletions
Base/Py/PyUtils.cpp
+
4
−
2
View file @
fa1c968f
...
...
@@ -68,10 +68,10 @@ std::string BaseUtils::Python::toString(wchar_t* c)
return
std
::
string
(
wstr
.
begin
(),
wstr
.
end
());
}
void
BaseUtils
::
Python
::
import_bornagain
(
const
std
::
vector
<
std
::
string
>&
paths
)
PyObject
*
BaseUtils
::
Python
::
import_bornagain
(
const
std
::
vector
<
std
::
string
>&
paths
)
{
if
(
Py_IsInitialized
())
return
;
return
nullptr
;
Py_InitializeEx
(
0
);
// like Py_Initialize, but skip registration of signal handlers
...
...
@@ -97,6 +97,8 @@ void BaseUtils::Python::import_bornagain(const std::vector<std::string>& paths)
#ifndef _WIN32
PyOS_setsig
(
SIGINT
,
sighandler
);
#endif
return
pmod
;
}
std
::
string
BaseUtils
::
Python
::
pythonRuntimeInfo
()
...
...
This diff is collapsed.
Click to expand it.
Base/Py/PyUtils.h
+
1
−
1
View file @
fa1c968f
...
...
@@ -42,7 +42,7 @@ std::string toString(char* c);
std
::
string
toString
(
wchar_t
*
c
);
//! Imports BornAgain from given location. If path is empty, tries to rely on PYTHONPATH.
void
import_bornagain
(
const
std
::
vector
<
std
::
string
>&
paths
=
{});
PyObject
*
import_bornagain
(
const
std
::
vector
<
std
::
string
>&
paths
=
{});
//! Returns multi-line string representing PATH, PYTHONPATH, sys.path and other info.
std
::
string
pythonRuntimeInfo
();
...
...
This diff is collapsed.
Click to expand it.
Tests/Functional/PyEmbedded/Tests.cpp
+
2
−
17
View file @
fa1c968f
...
...
@@ -79,15 +79,7 @@ TEST_F(PyEmbedded, ImportNumpy)
TEST_F
(
PyEmbedded
,
FunctionCall
)
{
Py_Initialize
();
PyObject
*
sysPath
=
PySys_GetObject
((
char
*
)
"path"
);
PyList_Append
(
sysPath
,
PyString_FromString
(
"."
));
PyList_Append
(
sysPath
,
PyString_FromString
(
BABuild
::
buildLibDir
().
c_str
()));
PyObject
*
pmod
=
PyImport_ImportModule
(
"bornagain"
);
if
(
!
pmod
)
throw
std
::
runtime_error
(
"Can't load module"
);
PyObject
*
pmod
=
BaseUtils
::
Python
::
import_bornagain
({
"."
,
BABuild
::
buildLibDir
()});
PyObject
*
pfun
=
PyObject_GetAttrString
(
pmod
,
"GetVersionNumber"
);
Py_DecRef
(
pmod
);
...
...
@@ -261,14 +253,7 @@ TEST_F(PyEmbedded, CompiledFunction)
TEST_F
(
PyEmbedded
,
ObjectExtract
)
{
Py_Initialize
();
PyObject
*
sysPath
=
PySys_GetObject
((
char
*
)
"path"
);
PyList_Append
(
sysPath
,
PyString_FromString
(
BABuild
::
buildLibDir
().
c_str
()));
PyObject
*
pmod
=
PyImport_ImportModule
(
"bornagain"
);
if
(
!
pmod
)
throw
std
::
runtime_error
(
"Can't load bornagain"
);
PyObject
*
pmod
=
BaseUtils
::
Python
::
import_bornagain
({
BABuild
::
buildLibDir
()});
PyObject
*
ml
=
PyObject_GetAttrString
(
pmod
,
"MultiLayer"
);
Py_DecRef
(
pmod
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment