summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVijayakumar A <36878324+kumvijaya@users.noreply.github.com>2024-09-06 00:41:31 +0530
committerGitHub <noreply@github.com>2024-09-06 00:41:31 +0530
commitab075bc9a665d289113a98757c423a48fe1f19aa (patch)
tree043a4f338b7cd80ed2c9cf6d9c32ba1c532498aa /src
parent441e1b13208929b3bbd14f74a642bc54f250a852 (diff)
downloadvyos-workflow-test-temp-ab075bc9a665d289113a98757c423a48fe1f19aa.tar.gz
vyos-workflow-test-temp-ab075bc9a665d289113a98757c423a48fe1f19aa.zip
Test 1
Diffstat (limited to 'src')
-rw-r--r--src/tests/test.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tests/test.py b/src/tests/test.py
new file mode 100644
index 0000000..46803bd
--- /dev/null
+++ b/src/tests/test.py
@@ -0,0 +1,7 @@
+from typing import List
+
+import os
+
+def sum_even_numbers(numbers: List[int]) -> int:
+ """Given a list of integers, return the sum of all even numbers in the list."""
+ return sum(num for num in numbers if num % 2 == 0) \ No newline at end of file