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.
1 parent c4b2230 commit 7d5a441Copy full SHA for 7d5a441
.github/workflows/ci.yml
@@ -68,6 +68,19 @@ jobs:
68
PYTHONPATH=$PYTHONPATH:.pypy .pypy/rpython/bin/rpython --batch src/main_rpython.py
69
./som-${{ matrix.id }}-interp -cp Smalltalk TestSuite/TestHarness.som
70
71
+ - name: Integration Tests
72
+ if: matrix.id == 'basic'
73
+ run: |
74
+ python -m pip install --upgrade pip
75
+ pip install pytest
76
+ export VM=./som.sh
77
+ export CLASSPATH=Smalltalk
78
+ export TEST_EXPECTATIONS=./integration-tests.yml
79
+ export AWFY=Examples/AreWeFastYet/Core
80
+
81
+ SOM_INTERP=AST pytest core-lib/IntegrationTests
82
+ SOM_INTERP=BC pytest core-lib/IntegrationTests
83
84
- name: SomSom Tests
85
if: matrix.id != 'basic'
86
run: |
0 commit comments