-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Run tests through GitHub Actions (#573)
* try a simple workflow first * try running on new ubuntu VM * fixes * bump poetry version to 1.8.3 * try removing caching.. * add workflow for testing tsv tools
- Loading branch information
1 parent
bdd102a
commit beccd4c
Showing
2 changed files
with
94 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: CLI Tests | ||
|
||
on: | ||
push: | ||
branches: ["dev"] | ||
pull_request: | ||
branches: ["dev"] | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
env: | ||
POETRY_VERSION: '1.8.3' | ||
PYTHON_VERSION: '3.11' | ||
|
||
jobs: | ||
test-cli: | ||
runs-on: | ||
- self-hosted | ||
- Linux | ||
- ubuntu | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: snok/install-poetry@v1 | ||
with: | ||
version: ${{ env.POETRY_VERSION }} | ||
virtualenvs-create: false | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- name: Run CLI tests | ||
run: | | ||
make env.conda | ||
source /builds/miniconda3/etc/profile.d/conda.sh | ||
conda activate "${{ github.workspace }}"/env | ||
make install | ||
cd tests | ||
poetry run pytest --verbose \ | ||
--junitxml=./test-reports/test_cli_report.xml \ | ||
--disable-warnings \ | ||
--verbose \ | ||
test_cli.py |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: TSV Tools Tests | ||
|
||
on: | ||
push: | ||
branches: ["dev"] | ||
pull_request: | ||
branches: ["dev"] | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
env: | ||
POETRY_VERSION: '1.8.3' | ||
PYTHON_VERSION: '3.11' | ||
|
||
jobs: | ||
test-tsvtools: | ||
runs-on: | ||
- self-hosted | ||
- Linux | ||
- ubuntu | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: snok/install-poetry@v1 | ||
with: | ||
version: ${{ env.POETRY_VERSION }} | ||
virtualenvs-create: false | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- name: Run tests for TSV tools | ||
run: | | ||
make env.conda | ||
source /builds/miniconda3/etc/profile.d/conda.sh | ||
conda activate "${{ github.workspace }}"/env | ||
make install | ||
cd tests | ||
poetry run pytest --verbose \ | ||
--junitxml=./test-reports/test_tsvtools_report.xml \ | ||
--disable-warnings \ | ||
--verbose \ | ||
--basetemp=$HOME/tmp \ | ||
--input_data_directory=/mnt/data/data_ci \ | ||
test_tsvtools.py |