Closed AndrewEckart closed 3 years ago
Merging #108 (865477e) into develop (e1cb9f6) will increase coverage by
0.14%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## develop #108 +/- ##
===========================================
+ Coverage 90.76% 90.90% +0.14%
===========================================
Files 46 47 +1
Lines 1289 1309 +20
Branches 106 108 +2
===========================================
+ Hits 1170 1190 +20
Misses 106 106
Partials 13 13
Impacted Files | Coverage Δ | |
---|---|---|
servicex/routes.py | 100.00% <100.00%> (ø) |
|
servicex/web/transformation_request.py | 100.00% <100.00%> (ø) |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update e1cb9f6...865477e. Read the comment docs.
This PR adds a new web route at
/transformation-request/<id>
, which displays detailed information about a single transformation request. Note thatid
can be either the autoincremented integer used as the primary key in the database or therequest_id
, which is the generated UUID used in many other places throughout the back end.Partially replaces #79.