Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fa39d1c

Browse files
committedNov 11, 2024·
Move tools and analysis tests to tests folder
1 parent 908b54e commit fa39d1c

File tree

405 files changed

+75
-3674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

405 files changed

+75
-3674
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ jobs:
320320
- name: Check for diffs in tests folder
321321
run: git diff --ignore-cr-at-eol --exit-code tests
322322

323-
- name: Run analysis/tools tests
323+
- name: Run analysis / tools tests
324324
if: runner.os != 'Windows' && matrix.os != 'buildjet-2vcpu-ubuntu-2204-arm'
325-
run: opam exec -- make -C analysis test && make -C tools/tests test
325+
run: opam exec -- make -C tests/analysis_tests test && make -C tests/tools_tests test
326326

327327
- name: Run gentype tests
328328
if: runner.os != 'Windows'

‎.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ playground/compiler.js
7777
rewatch/target/
7878
rewatch/rewatch
7979

80-
tools/**/*.res.js
81-
tools/tests/lib
82-
analysis/tests*/lib
80+
tests/tools_tests/**/*.res.js
81+
tests/tools_tests/lib
82+
tests/analysis_tests*/lib
83+
tests/analysis_tests/**/*.bs.js

0 commit comments

Comments
 (0)
Please sign in to comment.