Skip to content
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

feat: refactor #7

Merged
merged 44 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
a33d1b3
refactor
jakevc Jan 24, 2025
c0e6018
no keys
jakevc Jan 24, 2025
6a8af10
rm container image
jakevc Jan 24, 2025
56e65ba
build job definition
jakevc Jan 24, 2025
0c30eac
update submit job def
jakevc Jan 24, 2025
4a4bccf
update internal method
jakevc Jan 24, 2025
7bc9d2a
move command up
jakevc Jan 24, 2025
bca0dd0
bump deps
jakevc Jan 24, 2025
acac896
fixes
jakevc Jan 25, 2025
8447d07
settings tweak
jakevc Jan 25, 2025
4940ead
authors
jakevc Jan 25, 2025
9370e67
Merge branch 'main' into feat--refactor
jakevc Jan 25, 2025
ce595f5
format
jakevc Jan 25, 2025
21b882f
executor setting type causes circular import
jakevc Jan 25, 2025
6e6916d
tweak
jakevc Jan 25, 2025
86dfe89
tweak
jakevc Jan 25, 2025
459580e
update WorkflowError msg
jakevc Jan 26, 2025
e1b1bb0
tuple
jakevc Jan 26, 2025
3c69a03
todo
jakevc Jan 26, 2025
bed0327
terraform
jakevc Jan 26, 2025
14afb48
debug
jakevc Jan 27, 2025
8c1d65d
tf
jakevc Jan 27, 2025
b0865a7
vpc_id
jakevc Jan 27, 2025
9dfa6e7
tf
jakevc Jan 27, 2025
504d884
tf
jakevc Jan 27, 2025
a17d9b6
docker cmd
jakevc Jan 28, 2025
b914564
its alive
jakevc Jan 28, 2025
df9fec3
refactor
jakevc Jan 29, 2025
0cc969e
tweak
jakevc Jan 29, 2025
ac92dfd
log
jakevc Jan 29, 2025
48c9f36
mock success
jakevc Jan 29, 2025
f59fe23
error hangling
jakevc Jan 29, 2025
8e52d3b
env
jakevc Jan 29, 2025
460e422
Update snakemake_executor_plugin_aws_batch/__init__.py
jakevc Jan 29, 2025
9756fc7
Update .github/workflows/ci_mocked_api.yml
jakevc Jan 29, 2025
aa1a1f0
OIDC
jakevc Jan 29, 2025
93fab0b
black
jakevc Jan 29, 2025
5da9542
secret
jakevc Jan 29, 2025
0ddf9bf
MinioLocal
jakevc Feb 3, 2025
2cfe577
validate resources
jakevc Mar 1, 2025
cb54f51
black
jakevc Mar 3, 2025
1a46aa2
Update snakemake_executor_plugin_aws_batch/batch_job_builder.py
jakevc Mar 3, 2025
29dcb0b
black
jakevc Mar 3, 2025
4ef219a
str
jakevc Mar 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci_mocked_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
env:
PYTHON_VERSION: 3.11

permissions:
id-token: write
contents: read

jobs:
formatting:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -84,10 +88,37 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry

- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install docker-compose
- name: Start MinIO service
run: docker-compose -f tests/docker-compose.yml up -d

- name: Install MinIO Client CLI
run: |
curl -O https://dl.min.io/client/mc/release/linux-amd64/mc
chmod +x mc
sudo mv mc /usr/local/bin/
- name: Configure MinIO client
run: |
mc alias set minio http://localhost:9000 minio minio123

- name: Install dependencies
run: poetry install

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: "${{ secrets.SNAKEMAKE_AWS_BATCH_REGION }}"
role-to-assume: "${{ secrets.GH_AWS_ROLE_ARN }}"
role-session-name: "GitHubActions"

- name: Run pytest
env:
SNAKEMAKE_AWS_BATCH_REGION: "${{ secrets.SNAKEMAKE_AWS_BATCH_REGION }}"
SNAKEMAKE_AWS_BATCH_JOB_QUEUE: "${{ secrets.SNAKEMAKE_AWS_BATCH_JOB_QUEUE }}"
SNAKEMAKE_AWS_BATCH_JOB_ROLE: "${{ secrets.SNAKEMAKE_AWS_BATCH_JOB_ROLE }}"
run: poetry run coverage run -m pytest tests/tests_mocked_api.py -v

- name: Run Coverage
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ci_true_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
env:
PYTHON_VERSION: "3.11"

permissions:
id-token: write
contents: read

jobs:
testing-true-api:
runs-on: ubuntu-latest
Expand All @@ -30,6 +34,17 @@ jobs:
- name: Install Dependencies using Poetry
run: poetry install

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: "${{ secrets.SNAKEMAKE_AWS_BATCH_REGION }}"
role-to-assume: "${{ secrets.GH_AWS_ROLE_ARN }}"
role-session-name: "GitHubActions"

- name: Run pytest
env:
SNAKEMAKE_AWS_BATCH_REGION: "${{ secrets.SNAKEMAKE_AWS_BATCH_REGION }}"
SNAKEMAKE_AWS_BATCH_JOB_QUEUE: "${{ secrets.SNAKEMAKE_AWS_BATCH_JOB_QUEUE }}"
SNAKEMAKE_AWS_BATCH_JOB_ROLE: "${{ secrets.SNAKEMAKE_AWS_BATCH_JOB_ROLE }}"
run:
poetry run pytest tests/tests_true_api.py -v
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,7 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

poetry.lock
poetry.lock

.terraform*
terraform.tfstate*
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"black-formatter.interpreter": [
"./.venv/bin/python"
],
"flake8.interpreter": [
"./.venv/bin/python"
],
"files.saveConflictResolution": "overwriteFileOnDisk"
}
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ keywords = ["snakemake", "plugin", "executor", "aws-batch"]

[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.15.0"
snakemake-interface-executor-plugins = "^9.0.0"
boto3 = "^1.33.11"
snakemake-interface-common = "^1.17.4"
snakemake-interface-executor-plugins = "^9.3.2"
boto3 = "^1.36.5"

[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
Expand Down
Loading