We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 677aaa3 + 5557ebd commit 5d41ad0Copy full SHA for 5d41ad0
.circleci/config.yml
@@ -0,0 +1,16 @@
1
+version: 2
2
+jobs:
3
+ test:
4
+ docker:
5
+ - image: ubuntu:18.04
6
+ working_directory: ~/repo
7
+ steps:
8
+ - checkout
9
+ - run:
10
+ name: Install Dependencies
11
+ command: |
12
+ sudo apt-get update
13
+ sudo apt-get install -y --no-install-recommends gforth python
14
15
+ name: Run Tests
16
+ command: python test/run-tests.py -v
test/run-tests.py
100644
100755
@@ -54,3 +54,6 @@ def test (filename):
54
55
# restore directory
56
os.chdir (prevdir)
57
+
58
+if failed > 0 or passed == 0:
59
+ sys.exit(1)
0 commit comments