Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-mumps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
kwant
python-mumps
Commits
67ec3709
Verified
Commit
67ec3709
authored
1 year ago
by
Anton Akhmerov
Browse files
Options
Downloads
Patches
Plain Diff
add test function
parent
ffc8602d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!9
switch to meson build
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mumpy/__init__.py
+13
-0
13 additions, 0 deletions
mumpy/__init__.py
with
13 additions
and
0 deletions
mumpy/__init__.py
+
13
−
0
View file @
67ec3709
...
...
@@ -16,4 +16,17 @@ __all__ = [
"
nullspace
"
,
"
possible_orderings
"
,
"
__version__
"
,
"
test
"
,
]
def
test
(
verbose
=
True
):
from
pytest
import
main
import
os.path
return
main
(
[
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)),
"
-s
"
]
+
([
"
-v
"
]
if
verbose
else
[])
)
test
.
__test__
=
False
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