Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
hive
beem
Commits
48f2b5ed
Commit
48f2b5ed
authored
6 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
Fix unit test and improve documentation
parent
29d685a7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/beem.snapshot.rst
+7
-0
7 additions, 0 deletions
docs/beem.snapshot.rst
docs/installation.rst
+21
-0
21 additions, 0 deletions
docs/installation.rst
tests/beem/test_nodelist.py
+2
-2
2 additions, 2 deletions
tests/beem/test_nodelist.py
with
30 additions
and
2 deletions
docs/beem.snapshot.rst
+
7
−
0
View file @
48f2b5ed
beem\.snapshot
==============
.. automodule:: beem.snapshot
:members:
:undoc-members:
:show-inheritance:
This diff is collapsed.
Click to expand it.
docs/installation.rst
+
21
−
0
View file @
48f2b5ed
...
@@ -38,6 +38,14 @@ Install beem by pip::
...
@@ -38,6 +38,14 @@ Install beem by pip::
pip install -U beem
pip install -U beem
Sometimes this does not work. Please try::
pip3 install -U beem
or::
python -m pip install beem
Manual installation
Manual installation
-------------------
-------------------
...
@@ -69,3 +77,16 @@ Once the conda-forge channel has been enabled, beem can be installed with::
...
@@ -69,3 +77,16 @@ Once the conda-forge channel has been enabled, beem can be installed with::
Signing and Verify can be fasten (200 %) by installing cryptography::
Signing and Verify can be fasten (200 %) by installing cryptography::
conda install cryptography
conda install cryptography
Enable Logging
--------------
Add the following for enabling logging in your python script::
import logging
log = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)
When you want to see only critical errors, replace the last line by::
logging.basicConfig(level=logging.CRITICAL)
This diff is collapsed.
Click to expand it.
tests/beem/test_nodelist.py
+
2
−
2
View file @
48f2b5ed
...
@@ -23,8 +23,8 @@ class Testcases(unittest.TestCase):
...
@@ -23,8 +23,8 @@ class Testcases(unittest.TestCase):
def
test_get_nodes
(
self
):
def
test_get_nodes
(
self
):
nodelist
=
NodeList
()
nodelist
=
NodeList
()
all_nodes
=
nodelist
.
get_nodes
(
normal
=
True
,
appbase
=
True
,
dev
=
True
,
testnet
=
True
)
all_nodes
=
nodelist
.
get_nodes
(
normal
=
True
,
appbase
=
True
,
dev
=
True
,
testnet
=
True
,
testnetdev
=
True
)
self
.
assertEqual
(
len
(
nodelist
),
len
(
all_nodes
))
self
.
assertEqual
(
len
(
nodelist
)
-
2
,
len
(
all_nodes
))
https_nodes
=
nodelist
.
get_nodes
(
wss
=
False
)
https_nodes
=
nodelist
.
get_nodes
(
wss
=
False
)
self
.
assertEqual
(
https_nodes
[
0
][:
5
],
'
https
'
)
self
.
assertEqual
(
https_nodes
[
0
][:
5
],
'
https
'
)
...
...
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