Skip to content

Commit 63c74e2

Browse files
committed
[integration] Move code to the final_task folder
1 parent 721016d commit 63c74e2

File tree

11 files changed

+5
-4
lines changed

11 files changed

+5
-4
lines changed

pycalc renamed to final_task/pycalc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@ if __name__ == '__main__':
1515
print(expression.value())
1616
except BaseExpressionException as exc:
1717
print("ERROR: {}".format(str(exc)))
18-
# expression = Element(expression=args.EXPRESSION)
19-
# print(expression.value())
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from unittest import TestCase
22

3-
from libs.element import Element, NoExpressionException, ExpressionFormatException, BracketsAreNotBalanced, \
3+
from libs.element import Element, NoExpressionException, BracketsAreNotBalanced, \
44
DoubleOperationException, ExpressionFormatException, UnsupportedMathematicalOperationException, \
55
UnsupportedMathematicalFunctionException
66

File renamed without changes.

gitlab-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
image: python:3.6-alpine
22

3+
before_script:
4+
- cd final_task
5+
36
test:
47
stage: test
58
script:

0 commit comments

Comments
 (0)