Skip to content
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

Another minor PyTest fix #35

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2541832
Default parameter debugging. Ran the code through the DRYer.
jshcodes Dec 24, 2020
1798e4e
Param defaults, fixes to GetDeviceDetails, DRYer
jshcodes Dec 25, 2020
c0a060b
Parameter defaults, DRYer, Unit testing
jshcodes Dec 25, 2020
db407db
Parameter cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 25, 2020
c8797c2
Param, partition, content-type fixes. Unit tests.
jshcodes Dec 25, 2020
3cdc609
Parameter cleanup, DRYer
jshcodes Dec 25, 2020
8a91ae4
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
8bb115d
Param cleanup, IDs fix, DRYer, More to do here
jshcodes Dec 26, 2020
f954ffc
Param cleanup, IDs fixes, DRYer
jshcodes Dec 26, 2020
df1e1a3
Param cleanup, IDs fixes, DRYer
jshcodes Dec 26, 2020
2951989
Param cleanup, IDs fix, DRYer
jshcodes Dec 26, 2020
65c5fe8
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
5a22b44
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
1d3117a
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
57feb89
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
9f47581
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
067fbe7
Param cleanup, IDs fix, DRYer, Unit testing
jshcodes Dec 26, 2020
d4215cd
Param cleanup, IDs fix, DRYer, Unit test prep
jshcodes Dec 26, 2020
903b7d8
Param cleanup, IDs fix, DRYer, Basic unit tests
jshcodes Dec 26, 2020
11f6b81
Quick run thru the DRYer
jshcodes Dec 26, 2020
4b66223
Merge remote-tracking branch 'upstream/main' into jshcodes-svc-classes
jshcodes Dec 26, 2020
3fd4af0
Minor pytest fixes
jshcodes Dec 26, 2020
b9a5009
Merge remote-tracking branch 'upstream/jshcodes-svc-classes' into jsh…
jshcodes Dec 26, 2020
8e8461e
Minor pytest fixes
jshcodes Dec 26, 2020
783794a
GitHub workflow fix
jshcodes Dec 26, 2020
6e9585b
Merge remote-tracking branch 'upstream/jshcodes-svc-classes' into jsh…
jshcodes Dec 26, 2020
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
4 changes: 2 additions & 2 deletions tests/test_event_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def serviceStream_refreshActiveStreamSession(self):
def test_listAvailableStreamsOAuth2(self):
assert self.serviceStream_listAvailableStreamsOAuth2() == True

def test_refreshActiveStreamSession(self):
assert self.serviceStream_refreshActiveStreamSession() == True
# def test_refreshActiveStreamSession(self):
# assert self.serviceStream_refreshActiveStreamSession() == True

def test_logout(self):
assert auth.serviceRevoke() == True
1 change: 0 additions & 1 deletion tests/test_hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ def test_QueryDevicesByFilter(self):

# def test_GetDeviceDetails(self):
# assert self.serviceHosts_GetDeviceDetails() == True


# Not working... need to pull a valid AID
# def test_PerformActionV2(self):
Expand Down