• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

GeoStat-Framework / welltestpy / 10691143420

03 Sep 2024 09:48PM UTC coverage: 76.813% (+0.8%) from 76.01%
10691143420

Pull #35

github

web-flow
Merge 1ebfe99fb into 81a2299af
Pull Request #35: Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

1928 of 2510 relevant lines covered (76.81%)

10.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

81.82
/src/welltestpy/__init__.py
1
"""
2
welltestpy - a Python package to handle well-based Field-campaigns.
3

4
welltestpy provides a framework to handle and plot data from well based
5
field campaigns as well as a parameter estimation module.
6

7
Subpackages
8
^^^^^^^^^^^
9

10
.. autosummary::
11
   :toctree: api
12

13
   data
14
   estimate
15
   process
16
   tools
17

18
Classes
19
^^^^^^^
20

21
Campaign classes
22
~~~~~~~~~~~~~~~~
23

24
.. currentmodule:: welltestpy.data
25

26
The following classes can be used to handle field campaigns.
27

28
.. autosummary::
29
   Campaign
30
   FieldSite
31

32
Field Test classes
33
~~~~~~~~~~~~~~~~~~
34

35
The following classes can be used to handle field test within a campaign.
36

37
.. autosummary::
38
   PumpingTest
39

40
Loading routines
41
^^^^^^^^^^^^^^^^
42

43
Campaign related loading routines
44

45
.. autosummary::
46
   load_campaign
47
"""
48
from . import data, estimate, process, tools
14✔
49

50
try:
14✔
51
    from ._version import __version__
14✔
52
except ImportError:  # pragma: nocover
×
53
    # package is not installed
54
    __version__ = "0.0.0.dev0"
×
55

56
from .data.campaignlib import Campaign, FieldSite
14✔
57
from .data.data_io import load_campaign
14✔
58
from .data.testslib import PumpingTest
14✔
59

60
__all__ = ["__version__"]
14✔
61
__all__ += ["data", "estimate", "process", "tools"]
14✔
62
__all__ += ["Campaign", "FieldSite", "PumpingTest", "load_campaign"]
14✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc