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
427d1e55
Commit
427d1e55
authored
7 years ago
by
Holger Nahrstaedt
Browse files
Options
Downloads
Patches
Plain Diff
try to fix circelei
parent
4768749e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.circleci/config.yml
+0
-4
0 additions, 4 deletions
.circleci/config.yml
beem/price.py
+30
-15
30 additions, 15 deletions
beem/price.py
tox.ini
+1
-1
1 addition, 1 deletion
tox.ini
with
31 additions
and
20 deletions
.circleci/config.yml
+
0
−
4
View file @
427d1e55
...
@@ -44,10 +44,6 @@ jobs:
...
@@ -44,10 +44,6 @@ jobs:
command
:
|
command
:
|
tox -e py36,pyflakes,coverage
tox -e py36,pyflakes,coverage
-
store_artifacts
:
path
:
test-reports
destination
:
test-reports
-
deploy
:
-
deploy
:
name
:
Push coverage
name
:
Push coverage
command
:
|
command
:
|
...
...
This diff is collapsed.
Click to expand it.
beem/price.py
+
30
−
15
View file @
427d1e55
...
@@ -95,7 +95,8 @@ class Price(dict):
...
@@ -95,7 +95,8 @@ class Price(dict):
elif
(
price
is
not
None
and
isinstance
(
price
,
dict
)
and
elif
(
price
is
not
None
and
isinstance
(
price
,
dict
)
and
"
base
"
in
price
and
"
base
"
in
price
and
"
quote
"
in
price
):
"
quote
"
in
price
):
assert
"
price
"
not
in
price
,
"
You cannot provide a
'
price
'
this way
"
if
"
price
"
in
price
:
raise
AssertionError
(
"
You cannot provide a
'
price
'
this way
"
)
# Regular 'price' objects according to steem-core
# Regular 'price' objects according to steem-core
base_id
=
price
[
"
base
"
][
"
asset_id
"
]
base_id
=
price
[
"
base
"
][
"
asset_id
"
]
if
price
[
"
base
"
][
"
asset_id
"
]
==
base_id
:
if
price
[
"
base
"
][
"
asset_id
"
]
==
base_id
:
...
@@ -257,7 +258,8 @@ class Price(dict):
...
@@ -257,7 +258,8 @@ class Price(dict):
else
:
else
:
raise
ValueError
(
"
Wrong rotation of prices
"
)
raise
ValueError
(
"
Wrong rotation of prices
"
)
elif
isinstance
(
other
,
Amount
):
elif
isinstance
(
other
,
Amount
):
assert
other
[
"
asset
"
][
"
id
"
]
==
self
[
"
quote
"
][
"
asset
"
][
"
id
"
]
if
not
other
[
"
asset
"
][
"
id
"
]
==
self
[
"
quote
"
][
"
asset
"
][
"
id
"
]:
raise
AssertionError
()
a
=
other
.
copy
()
*
self
[
"
price
"
]
a
=
other
.
copy
()
*
self
[
"
price
"
]
a
[
"
asset
"
]
=
self
[
"
base
"
][
"
asset
"
].
copy
()
a
[
"
asset
"
]
=
self
[
"
base
"
][
"
asset
"
].
copy
()
a
[
"
symbol
"
]
=
self
[
"
base
"
][
"
asset
"
][
"
symbol
"
]
a
[
"
symbol
"
]
=
self
[
"
base
"
][
"
asset
"
][
"
symbol
"
]
...
@@ -295,7 +297,8 @@ class Price(dict):
...
@@ -295,7 +297,8 @@ class Price(dict):
steem_instance
=
self
.
steem
steem_instance
=
self
.
steem
)
)
elif
isinstance
(
other
,
Amount
):
elif
isinstance
(
other
,
Amount
):
assert
other
[
"
asset
"
][
"
id
"
]
==
self
[
"
quote
"
][
"
asset
"
][
"
id
"
]
if
not
other
[
"
asset
"
][
"
id
"
]
==
self
[
"
quote
"
][
"
asset
"
][
"
id
"
]:
raise
AssertionError
()
a
=
other
.
copy
()
/
self
[
"
price
"
]
a
=
other
.
copy
()
/
self
[
"
price
"
]
a
[
"
asset
"
]
=
self
[
"
base
"
][
"
asset
"
].
copy
()
a
[
"
asset
"
]
=
self
[
"
base
"
][
"
asset
"
].
copy
()
a
[
"
symbol
"
]
=
self
[
"
base
"
][
"
asset
"
][
"
symbol
"
]
a
[
"
symbol
"
]
=
self
[
"
base
"
][
"
asset
"
][
"
symbol
"
]
...
@@ -320,48 +323,60 @@ class Price(dict):
...
@@ -320,48 +323,60 @@ class Price(dict):
def
__lt__
(
self
,
other
):
def
__lt__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
<
other
[
"
price
"
]
return
self
[
"
price
"
]
<
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
<
float
(
other
or
0
)
return
self
[
"
price
"
]
<
float
(
other
or
0
)
def
__le__
(
self
,
other
):
def
__le__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
<=
other
[
"
price
"
]
return
self
[
"
price
"
]
<=
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
<=
float
(
other
or
0
)
return
self
[
"
price
"
]
<=
float
(
other
or
0
)
def
__eq__
(
self
,
other
):
def
__eq__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
==
other
[
"
price
"
]
return
self
[
"
price
"
]
==
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
==
float
(
other
or
0
)
return
self
[
"
price
"
]
==
float
(
other
or
0
)
def
__ne__
(
self
,
other
):
def
__ne__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
!=
other
[
"
price
"
]
return
self
[
"
price
"
]
!=
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
!=
float
(
other
or
0
)
return
self
[
"
price
"
]
!=
float
(
other
or
0
)
def
__ge__
(
self
,
other
):
def
__ge__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
>=
other
[
"
price
"
]
return
self
[
"
price
"
]
>=
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
>=
float
(
other
or
0
)
return
self
[
"
price
"
]
>=
float
(
other
or
0
)
def
__gt__
(
self
,
other
):
def
__gt__
(
self
,
other
):
if
isinstance
(
other
,
Price
):
if
isinstance
(
other
,
Price
):
assert
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]
if
not
other
[
"
base
"
][
"
symbol
"
]
==
self
[
"
base
"
][
"
symbol
"
]:
assert
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]
raise
AssertionError
()
if
not
other
[
"
quote
"
][
"
symbol
"
]
==
self
[
"
quote
"
][
"
symbol
"
]:
raise
AssertionError
()
return
self
[
"
price
"
]
>
other
[
"
price
"
]
return
self
[
"
price
"
]
>
other
[
"
price
"
]
else
:
else
:
return
self
[
"
price
"
]
>
float
(
other
or
0
)
return
self
[
"
price
"
]
>
float
(
other
or
0
)
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
1
View file @
427d1e55
...
@@ -34,7 +34,7 @@ commands =
...
@@ -34,7 +34,7 @@ commands =
[testenv:coverage]
[testenv:coverage]
deps
=
coverage
deps
=
coverage
commands
=
commands
=
py.test
--cov-report
xml:coverage.xml
py.test
--cov-report
xml:
/home/circleci/repo/.tox/upload_coverage/
coverage.xml
[testenv:upload_coverage]
[testenv:upload_coverage]
deps
=
coverage
deps
=
coverage
...
...
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