Skip to content
Snippets Groups Projects
Commit 4dc6473a authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'tweaking_core_sampler_pipeline' into '2.8.2-DEVELOPMENT'

tweaking core sampler pipeline

See merge request !1350
parents bd3040f4 7a685a24
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1350tweaking core sampler pipeline
Pipeline #9884 failed
......@@ -329,7 +329,9 @@ push core_sampler:
stage: push
rules:
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH =~ /(^[0-9]\.[0-9]|^[0-9]\.[0-9]\.[0-9])-DEVELOPMENT/'
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/ || $CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
before_script:
- cd apps/cli/utilities/core_sampler
- pip install flit
......
......@@ -12,3 +12,4 @@ examples:
`core_sampler -p 18B-120`
`core_sampler -e 18B-120.sb35750660.eb36089297_000.58485.110194270834.sql`
......@@ -21,7 +21,6 @@
import logging
import sys
from io import StringIO
from logging import getLogger
from unittest.mock import patch
from core_sampler.core_sampler import main
......@@ -30,8 +29,6 @@ logger = logging.getLogger("core_sampler")
logger.setLevel(logging.INFO)
logger.addHandler(logging.StreamHandler(sys.stdout))
import pytest
def test_gets_eb_as_expected():
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment