8000 Test fixes 2 by Kully · Pull Request #994 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Test fixes 2 #994

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
May 7, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3cef6d3
remove get_data, strip_style and to_string test files
Kully Apr 23, 2018
ce3b723
fixed test_frames
Kully Apr 23, 2018
7378270
test_data working
Kully Apr 23, 2018
fbdcb62
remove test_graph_objs_tools as graph_objs_tools doesn't exist
Kully Apr 23, 2018
39d036d
move strip_dict_params to plotly/test/utils.py
Kully Apr 23, 2018
53bcdec
fixed most of test_update
Kully Apr 24, 2018
c88ef40
Merge branch 'ipyplotly_integration' into test-fixes-2
Kully Apr 24, 2018
75b0ffc
Merge branch 'ipyplotly_integration' of https://github.com/plotly/plo…
Kully Apr 25, 2018
c2821a6
all test_core tests passing (sans streaming tests)
Kully Apr 26, 2018
f7c75cc
removed graph_objs as only to_dataframe is there - unsupported method…
Kully Apr 26, 2018
c228895
test_core tests working sans matplotlylib datatypes stuff
Kully Apr 26, 2018
22f15c0
update axis scales
Kully Apr 26, 2018
57a56aa
scatter - fixed test_scatter
Kully Apr 27, 2018
0fc2727
working on matplotlylib...
Kully Apr 30, 2018
6f8dcf4
convert dashed to dash in matplotlylib tools // fix test_lines
Kully Apr 30, 2018
20ecb25
test_date_times
Kully Apr 30, 2018
f024f57
fixed test_bars
Kully Apr 30, 2018
47622f5
remove commented x=... line
Kully Apr 30, 2018
390c4f2
axis_scales
Kully May 1, 2018
6d5dd92
annotations
Kully May 1, 2018
f70202d
subplots in matplotlylib
Kully May 1, 2018
6455837
fixed all streaming tests w/o server error to interupt \n playing wit…
Kully May 1, 2018
0fedc1b
working on using admin buildly account
Kully May 1, 2018
6ed70db
corrected coerce stream trace to dict if BaseTraceType line
Kully May 2, 2018
c891d75
mid stream write validation error
Kully May 2, 2018
77ca1b2
move print statements around
Kully May 2, 2018
f09a5ec
fixed streaming tests//no validation within stream.write
Kully May 2, 2018
0b5a98c
remove print statement
Kully May 2, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove get_data, strip_style and to_string test files
  • Loading branch information
Kully committed Apr 23, 2018
commit 3cef6d3d9f7882729c7d0d7efd0049bfb64d2f07
15 changes: 0 additions & 15 deletions plotly/tests/test_core/test_graph_objs/test_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,3 @@ def test_dict_instantiation_graph_obj_error_0():
def test_dict_instantiation_graph_obj_error_2():
assert Annotations([Annotations()]) == [[]]


def test_validate():
annotations = Annotations()
annotations.validate()
annotations += [{'text': 'some text'}]
annotations.validate()
annotations += [{}, {}, {}]
annotations.validate()


@raises(PlotlyDictKeyError)
def test_validate_error():
annotations = Annotations()
annotations.append({'not-a-key': 'anything'})
annotations.validate()
175 changes: 0 additions & 175 deletions plotly/tests/test_core/test_graph_objs/test_get_data.py

This file was deleted.

170 changes: 0 additions & 170 deletions plotly/tests/test_core/test_graph_objs/test_strip_style.py

This file was deleted.

Loading
0