-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c54ab0e
commit 3e26e14
Showing
6 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ The [VLMD docs](heal/vlmd/README.md) describe how to use the SDK for extracting | |
|
||
### Run tests | ||
|
||
``` | ||
```bash | ||
poetry run pytest -vv tests | ||
``` | ||
|
||
|
@@ -35,20 +35,20 @@ reference the git repo. | |
As an example, `pip install` can be called from the command line for getting | ||
the master branch of the `heal-platform-sdk`, | ||
|
||
``` | ||
```bash | ||
pip install -e git+https://github.com/uc-cdis/heal-platform-sdk.git#egg=heal | ||
``` | ||
|
||
or a particular branch, eg, | ||
|
||
``` | ||
```bash | ||
pip install -e git+https://github.com/uc-cdis/heal-platform-sdk.git@my-branch#egg=heal | ||
``` | ||
|
||
The specification can also be listed in requirements.txt file | ||
(with, say, a tag specification of 0.1.0) | ||
|
||
``` | ||
```bash | ||
pip install -e git+https://github.com/uc-cdis/[email protected]#egg=heal | ||
``` | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import click | ||
|
||
from cdislogging import get_logger | ||
|
||
from heal.vlmd.extract.extract import vlmd_extract | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import click | ||
import logging | ||
|
||
import cdislogging | ||
import click | ||
|
||
import heal.cli.vlmd as vlmd | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import click | ||
|
||
from cdislogging import get_logger | ||
|
||
from heal.vlmd.validate.validate import vlmd_validate | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import json | ||
|
||
import pytest | ||
|
||
from heal.vlmd.config import ( | ||
|
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