Skip to content

Commit

Permalink
[DOP-15023] Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Apr 15, 2024
1 parent cd81768 commit 9865d75
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .env.docker
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,3 @@ ENV=LOCAL
SPARK_CONF_DIR=/app/tests/spark/hive/conf/
HADOOP_CONF_DIR=/app/tests/spark/hadoop/
HIVE_CONF_DIR=/app/tests/spark/hive/conf/
CREATE_SPARK_SESSION_FUNCTION=tests.spark.get_worker_spark_session.get_worker_spark_session
1 change: 0 additions & 1 deletion .env.local
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,3 @@ export ENV=LOCAL
export SPARK_CONF_DIR=./app/tests/spark/hive/conf/
export HADOOP_CONF_DIR=./app/tests/spark/hadoop/
export HIVE_CONF_DIR=./app/tests/spark/hive/conf/
export CREATE_SPARK_SESSION_FUNCTION=tests.spark.get_worker_spark_session.get_worker_spark_session
2 changes: 2 additions & 0 deletions docker/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ CMD ["--loglevel=info"]

FROM prod as test

ENV CREATE_SPARK_SESSION_FUNCTION=tests.spark.get_worker_spark_session.get_worker_spark_session

# CI runs tests in the worker container, so we need backend dependencies too
RUN poetry install --no-root --extras "worker backend" --with test
RUN sed -i 's/python -m/coverage run -m/g' /app/entrypoint.sh
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# The short X.Y version.

# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
ver = Version.parse("0.1.1")
ver = Version.parse("0.1.2")
version = ver.base_version
# The full version, including alpha/beta/rc tags.
release = ver.public
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: 2023-2024 MTS (Mobile Telesystems)
# SPDX-License-Identifier: Apache-2.0

_raw_version = "0.1.1"
_raw_version = "0.1.2"
# version always contain only release number like 0.0.1
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410

0 comments on commit 9865d75

Please sign in to comment.