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

Release 0.0.6 #10

Merged
merged 43 commits into from
Oct 22, 2021
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
a1dc38d
add class inheritance
jfallt Oct 8, 2021
095865b
rename folder
jfallt Oct 19, 2021
0bfe42e
combine tests files into 1
jfallt Oct 19, 2021
82617c7
folder path maintenance
jfallt Oct 19, 2021
443df5c
add and update config files for package
jfallt Oct 19, 2021
a5cefcd
clarify get and post requests
jfallt Oct 19, 2021
373b9f0
test error handling
jfallt Oct 20, 2021
36dd67d
separate token error handling to own fn
jfallt Oct 20, 2021
fdd1123
update testing pkg list
jfallt Oct 20, 2021
11c7584
update dev requirements
jfallt Oct 20, 2021
76a2e43
add tox config file
jfallt Oct 20, 2021
a8d3784
add type hints to methods
jfallt Oct 20, 2021
2343ee4
allow for explicit calls of params outside config
jfallt Oct 20, 2021
306330b
move test class here, set up for cmd line calls
jfallt Oct 20, 2021
3d25225
logging for jwt
jfallt Oct 20, 2021
9fa8d5b
allow generics
jfallt Oct 21, 2021
9f97512
use fixtures from conftest
jfallt Oct 21, 2021
e689d0e
up tox.ini reqs
jfallt Oct 21, 2021
07e26d8
clean up imports
jfallt Oct 21, 2021
a62dfea
update requirements for tox
jfallt Oct 21, 2021
a2b9452
fix mypy errors
jfallt Oct 21, 2021
2c5e0d0
setup github actions for automated testing
jfallt Oct 21, 2021
8cf3444
fix indentation error
jfallt Oct 21, 2021
c5bfe7f
test without secret
jfallt Oct 21, 2021
93ca53b
update gh-actions configuration
jfallt Oct 21, 2021
4245305
limit to windows only
jfallt Oct 21, 2021
1bd42d7
fix config import error on automated tests
jfallt Oct 21, 2021
f4e9a50
fix typo in assertion type
jfallt Oct 21, 2021
8e6ec21
send secret to private.pem
jfallt Oct 21, 2021
62aa6a8
add quotes
jfallt Oct 21, 2021
4ffbefa
remove unused reference
jfallt Oct 21, 2021
e2c8619
formatting and mypy fixes
jfallt Oct 21, 2021
ef3dc30
configure for running without config file
jfallt Oct 21, 2021
35fca01
formatting update
jfallt Oct 21, 2021
2580ed1
fix optional parameters
jfallt Oct 21, 2021
e6fc724
remove max line length
jfallt Oct 21, 2021
a867f35
update requirements
jfallt Oct 21, 2021
1ffd006
ignore types for mypy
jfallt Oct 21, 2021
b7de50e
flake8 and mypy fixes
jfallt Oct 21, 2021
fcaa54b
flake8 adjustments
jfallt Oct 21, 2021
a0bd13f
Update ReadMe.md
jfallt Oct 22, 2021
8977f21
create github action to publish package
jfallt Oct 22, 2021
467501c
re-run failures
jfallt Oct 22, 2021
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
Prev Previous commit
Next Next commit
rename folder
  • Loading branch information
jfallt committed Oct 19, 2021
commit 095865b7756f418ffa5287bf47937ca18f3f519a
File renamed without changes.
8 changes: 7 additions & 1 deletion burgissApi/burgissApi.py → src/burgissApi.py
Original file line number Diff line number Diff line change
@@ -382,4 +382,10 @@ def pointInTimeAnalyisInput(analysisParameters, globalMeasureParameters, measure
pointInTimeAnalyis['dataCriteria'] = [dataCriteria]
pointInTimeAnalyis['groupBy'] = groupBy

return json.dumps(pointInTimeAnalyis)
print(pointInTimeAnalyis)
# Remove any none or null values
pointInTimeAnalyisProcessed = {x:y for x,y in pointInTimeAnalyis.items() if (y is not None and y!='null') }
print(pointInTimeAnalyis)

return pointInTimeAnalyis, pointInTimeAnalyisProcessed
#return json.dumps(pointInTimeAnalyis)