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

bump to pipeline v2023.11.06.135620 #672

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"opensafely-pipeline @ git+https://github.com/opensafely-core/[email protected].03.163048",
"opensafely-pipeline @ git+https://github.com/opensafely-core/[email protected].06.135620",
"ruyaml",
"requests",
"opentelemetry-exporter-otlp-proto-http",
Expand Down
2 changes: 1 addition & 1 deletion requirements.prod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ googleapis-common-protos==1.56.4
# via opentelemetry-exporter-otlp-proto-http
idna==2.10
# via requests
opensafely-pipeline @ git+https://github.com/opensafely-core/[email protected].03.163048
opensafely-pipeline @ git+https://github.com/opensafely-core/[email protected].06.135620
# via opensafely-jobrunner (pyproject.toml)
opentelemetry-api==1.12.0
# via
Expand Down
6 changes: 3 additions & 3 deletions tests/fixtures/full_project/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ actions:
needs: [generate_cohort]
outputs:
highly_sensitive:
male_cohort: cohortextractor-male.*
male_cohort: cohortextractor-male*.csv

prepare_data_f_cohortextractor:
run: python:latest python analysis/filter_by_sex.py F output/input.csv cohortextractor-female.csv
needs: [generate_cohort]
outputs:
highly_sensitive:
female_cohort: cohortextractor-female.*
female_cohort: cohortextractor-female*.csv

prepare_data_with_quote_in_filename_cohortextractor:
run: python:latest python analysis/filter_by_sex.py F output/input.csv "cohortextractor-qu'ote.csv"
needs: [generate_cohort]
outputs:
highly_sensitive:
quote_cohort: "cohortextractor-qu'ote.*"
quote_cohort: "cohortextractor-qu'ote.csv"

analyse_data_cohortextractor:
run: python:latest python analysis/count_lines.py cohortextractor-counts.txt
Expand Down
2 changes: 1 addition & 1 deletion tests/test_create_or_update_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_run_all_ignores_failed_actions_that_have_been_removed(tmp_work_dir):
run: python:latest -c pass
outputs:
moderately_sensitive:
name: path
name: path.csv
"""
create_jobs_with_project_file(
make_job_request(action="obsolete_action"), TEST_PROJECT + obsolete_action_def
Expand Down
Loading