-
Notifications
You must be signed in to change notification settings - Fork 17
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
Update default API URL in the webap #860
Open
jdbocarsly
wants to merge
2
commits into
main
Choose a base branch
from
jdb/update-default-server-port
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jdbocarsly
force-pushed
the
jdb/update-default-server-port
branch
from
August 28, 2024 18:51
a36243b
to
87417b7
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #860 +/- ##
=======================================
Coverage 68.12% 68.12%
=======================================
Files 62 62
Lines 3884 3884
=======================================
Hits 2646 2646
Misses 1238 1238 |
datalab Run #2336
Run Properties:
|
Project |
datalab
|
Branch Review |
jdb/update-default-server-port
|
Run status |
Failed #2336
|
Run duration | 02m 34s |
Commit |
fb2948906c ℹ️: Merge 871c692edd7df608d01bc086e78a90ab80102092 into 5bd7e24356853cf65364e531a886...
|
Committer | Josh Bocarsly |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
12
|
Flaky |
0
|
Pending |
0
|
Skipped |
117
|
Passing |
0
|
View all changes introduced in this branch ↗︎ |
Tests for review
batchSampleFeature.cy.js • 1 failed test • End-to-end tests (chrome)
Test | Artifacts | |
---|---|---|
Batch sample creation > Adds 3 valid samples |
Test Replay
Screenshots
|
editPage.cy.js • 1 failed test • End-to-end tests (chrome)
Test | Artifacts | |
---|---|---|
Edit Page > Loads the main page without any errors |
Test Replay
Screenshots
|
equipment.cy.js • 1 failed test • End-to-end tests (chrome)
Test | Artifacts | |
---|---|---|
Equipment table page > Loads the equipment page without any errors |
Test Replay
Screenshots
|
sampleTablePage.cy.js • 1 failed test • End-to-end tests (chrome)
Test | Artifacts | |
---|---|---|
Advanced sample creation features > Adds some valid samples |
Test Replay
Screenshots
|
batchSampleFeature.cy.js • 1 failed test • End-to-end tests (electron)
Test | Artifacts | |
---|---|---|
Batch sample creation > Adds 3 valid samples |
Test Replay
Screenshots
|
The first 5 failed specs are shown, see all 12 specs in Cypress Cloud.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When pydatalab is run in the default development manner (i.e., with
flask run
), it now serves the API tohttp://localhost:5000
. However, the webapp still defaults to sending the requests tohttp://localhost:5001.
This pull request updates the default tohttp://localhost:5000
.Note that the API URL can always be configured in the
.env
files of the webapp and will supercede this default value.