Skip to content
Snippets Groups Projects
Commit ec5f57ed authored by Corné Lukken's avatar Corné Lukken
Browse files

L2SS-983: Align version information

parent b59e944c
No related branches found
No related tags found
1 merge request!469L2SS-983: Deployment through environments and ansible
......@@ -24,14 +24,7 @@
failed_when: tango_directory.rc not in [0,1]
register: tango_directory
- name: Register pending changes
shell: |
git status | grep Changes
ret=$?
echo $ret
if [ $ret -eq 0 ]; then
exit 1
fi
exit 0
shell: "! (git status | grep Changes)"
args:
chdir: "{{ install_path }}"
changed_when: false
......@@ -53,11 +46,11 @@
shell: "make stop"
args:
chdir: "{{ install_path }}/docker-compose"
# - name: Git Fetch All
# changed_when: false
# shell: "git fetch --all"
# args:
# chdir: "{{ install_path }}"
- name: Git Fetch All
changed_when: false
shell: "git fetch --all"
args:
chdir: "{{ install_path }}"
- name: Update Sources
changed_when: false
shell: "git checkout {{ station_version }}"
......
0.3.0
0.3.1
......@@ -15,12 +15,12 @@ class AbstractCommClient(ABC):
def stop(self):
""" Stop communication with the client. """
@abstractmethod
def ping(self):
def ping(self): # noqa: B027
""" Check whether the connection is still alive.
Clients that override this method must raise an Exception if the
connection died. """
pass
@abstractmethod
def setup_attribute(self, annotation, attribute):
......
......@@ -82,7 +82,7 @@ class TestStatisticsWriterSST(BaseIntegrationTestCase):
'2021-09-20T12:17:40.000+00:00'
)
self.assertIsNotNone(stat)
self.assertEqual("0.2.0", stat.station_version_id)
self.assertEqual("0.3.1", stat.station_version_id)
self.assertEqual("0.1", stat.writer_version_id)
def test_insert_tango_SST_statistics(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment