Attention is currently required from: fixeria.
pespin has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37951?usp=email )
Change subject: PFCP: drop no longer needed {ts,tr}_PDU_PFCP
......................................................................
Patch Set 2: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37951?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I6091d7e76e852d2487b784fb2b3e39b416a48195
Gerrit-Change-Number: 37951
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 30 Aug 2024 12:35:28 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: dexter.
laforge has posted comments on this change by dexter. ( https://gerrit.osmocom.org/c/pysim/+/37823?usp=email )
Change subject: tests: move pySim-prog test and its data into a sub directory
......................................................................
Patch Set 13: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/37823?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ic995a7f600d164fc0be3c2eb8255dbe043429bea
Gerrit-Change-Number: 37823
Gerrit-PatchSet: 13
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 30 Aug 2024 05:52:22 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: dexter, fixeria.
laforge has posted comments on this change by dexter. ( https://gerrit.osmocom.org/c/pysim/+/37822?usp=email )
Change subject: tests: move pySim-trace test and its data into a sub directory
......................................................................
Patch Set 7: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/37822?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I565b4268a05c1a1334b5e7d3fbcd9ef2ef0f0c4c
Gerrit-Change-Number: 37822
Gerrit-PatchSet: 7
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 30 Aug 2024 05:52:19 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/37821?usp=email )
(
9 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: tests: move unittests into a sub directory
......................................................................
tests: move unittests into a sub directory
We currently mix the unit-tests with the shell script based integration
tests. Let's put them into a dedicated sub directory.
Related: OS#6531
Change-Id: I0978c5353d0d479a050bbb6e7ae5a63db5e08d24
---
M contrib/jenkins.sh
R tests/unittests/test_apdu.py
R tests/unittests/test_construct.py
R tests/unittests/test_esim.py
R tests/unittests/test_esim_bsp.py
R tests/unittests/test_esim_saip.py
R tests/unittests/test_euicc.py
R tests/unittests/test_files.py
R tests/unittests/test_globalplatform.py
R tests/unittests/test_ota.py
R tests/unittests/test_sms.py
R tests/unittests/test_tlv.py
R tests/unittests/test_tlvs.py
R tests/unittests/test_utils.py
14 files changed, 2 insertions(+), 2 deletions(-)
Approvals:
laforge: Looks good to me, approved
fixeria: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 16ab1c4..3dabdd7 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -27,7 +27,7 @@
pip install pyshark
# Execute automatically discovered unit tests first
- python -m unittest discover -v -s tests/
+ python -m unittest discover -v -s tests/unittests
# Run the test with physical cards
cd pysim-testdata
@@ -58,7 +58,7 @@
--disable E1102 \
--disable E0401 \
--enable W0301 \
- pySim tests/*.py *.py \
+ pySim tests/unittests/*.py *.py \
contrib/*.py
;;
"docs")
diff --git a/tests/test_apdu.py b/tests/unittests/test_apdu.py
similarity index 100%
rename from tests/test_apdu.py
rename to tests/unittests/test_apdu.py
diff --git a/tests/test_construct.py b/tests/unittests/test_construct.py
similarity index 100%
rename from tests/test_construct.py
rename to tests/unittests/test_construct.py
diff --git a/tests/test_esim.py b/tests/unittests/test_esim.py
similarity index 100%
rename from tests/test_esim.py
rename to tests/unittests/test_esim.py
diff --git a/tests/test_esim_bsp.py b/tests/unittests/test_esim_bsp.py
similarity index 100%
rename from tests/test_esim_bsp.py
rename to tests/unittests/test_esim_bsp.py
diff --git a/tests/test_esim_saip.py b/tests/unittests/test_esim_saip.py
similarity index 100%
rename from tests/test_esim_saip.py
rename to tests/unittests/test_esim_saip.py
diff --git a/tests/test_euicc.py b/tests/unittests/test_euicc.py
similarity index 100%
rename from tests/test_euicc.py
rename to tests/unittests/test_euicc.py
diff --git a/tests/test_files.py b/tests/unittests/test_files.py
similarity index 100%
rename from tests/test_files.py
rename to tests/unittests/test_files.py
diff --git a/tests/test_globalplatform.py b/tests/unittests/test_globalplatform.py
similarity index 100%
rename from tests/test_globalplatform.py
rename to tests/unittests/test_globalplatform.py
diff --git a/tests/test_ota.py b/tests/unittests/test_ota.py
similarity index 100%
rename from tests/test_ota.py
rename to tests/unittests/test_ota.py
diff --git a/tests/test_sms.py b/tests/unittests/test_sms.py
similarity index 100%
rename from tests/test_sms.py
rename to tests/unittests/test_sms.py
diff --git a/tests/test_tlv.py b/tests/unittests/test_tlv.py
similarity index 100%
rename from tests/test_tlv.py
rename to tests/unittests/test_tlv.py
diff --git a/tests/test_tlvs.py b/tests/unittests/test_tlvs.py
similarity index 100%
rename from tests/test_tlvs.py
rename to tests/unittests/test_tlvs.py
diff --git a/tests/test_utils.py b/tests/unittests/test_utils.py
similarity index 100%
rename from tests/test_utils.py
rename to tests/unittests/test_utils.py
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/37821?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I0978c5353d0d479a050bbb6e7ae5a63db5e08d24
Gerrit-Change-Number: 37821
Gerrit-PatchSet: 10
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Attention is currently required from: lynxis lazus, pespin.
fixeria has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/37924?usp=email )
Change subject: s1ap_proxy: Support replying errors
......................................................................
Patch Set 2: Code-Review-1
(1 comment)
Patchset:
PS2:
Let's keep this patch in review until we have functional or at least unit tests.
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/37924?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: erlang/osmo-s1gw
Gerrit-Branch: master
Gerrit-Change-Id: I242e84fb09b00f4794b6e1aa770f348a0e60aea4
Gerrit-Change-Number: 37924
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Comment-Date: Fri, 30 Aug 2024 05:39:07 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes