-
Notifications
You must be signed in to change notification settings - Fork 9
Standard integration tests, PEP8, docker adjustments #23
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
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
dcb062a
WIP PEP8
CBroz1 2f842b2
WIP Draft integration tests
CBroz1 bbfe140
WIP standard pytests. missing element-event. passed CLI, need docker …
CBroz1 c143548
WIP docker edits
CBroz1 7d4f879
minor docker changes
CBroz1 0cfdcf3
Revised docker from @iamamutt
CBroz1 90d0d74
Apply suggestions from code review
CBroz1 c77ac0c
WIP. Replace with dj image. TLS config statement
CBroz1 39d252d
Docker success *if detatched*
CBroz1 6a66ec4
Add contact info to Code of Conduct
CBroz1 a875dca
Remove order constraints in test_pipeline_generation
CBroz1 a777f34
WIP: Apply suggestions 1
CBroz1 c34d325
WIP: Apply suggestions 2
CBroz1 7e41a3a
WIP: Apply suggestions 3. All except Docker
CBroz1 217a84d
Revert dockerfile arg; adjust 05-explore
CBroz1 d7165ac
Apply suggestions from code review
CBroz1 8435df2
WIP. See details. Jupysync, verbose context, abc.Seq, etc.
CBroz1 b1e45a2
WIP: verbosity if to oneliner
CBroz1 68b04ed
Version bump
CBroz1 6fc72ee
Notebook fix black'd issues. Docker compose vol map
CBroz1 fd89eba
Revise notebook 02 - formatting issues
CBroz1 50fcc20
Revert nb 05
CBroz1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
WIP. See details. Jupysync, verbose context, abc.Seq, etc.
notebooks: Run Jupytext sync tests/__init__ : set conditional verbose context in constants, remove numpy workflow_mini/paths: list->abc.Sequence docker/docker-compose-test: uncomment volumes
- Loading branch information
commit 8435df28ccc4e1a5b4572f1462c242137e30cd04
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -62,5 +62,5 @@ networks: | |
| miniscope: | ||
| name: workflow-miniscope-network | ||
|
|
||
| # volumes: | ||
| # mysql-miniscope: | ||
| volumes: | ||
| mysql-miniscope: | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this required since the above code is commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @iamamutt - Could you remind me why
volumesis here? I see it in the copy you drafted prior to this PR. Doesnetworksnot provide what we need on it's own?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@CBroz1 That was there to map the data from the mysql database to a docker volume instead of bind mounting to the local filesystem. If you don't need access to the database data at all, you can delete the volumes section at the bottom, +72 to +73, and also it's mention at lines +19 to +20.
If you want a bind mounted volume, change
- mysql-miniscope:/var/lib/mysqlto- path/to/some/data/dir:/var/lib/mysql, and you can delete the volumes section at the end of the file.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense. Thanks @iamamutt!