-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
REVERT ME: Debug Python validation test failure on remote.
- Loading branch information
1 parent
761499b
commit bde16fb
Showing
6 changed files
with
11 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
run: | ||
strategy: | ||
matrix: | ||
platform: [ubuntu-latest, macos-latest, windows-latest] | ||
platform: [ubuntu-latest] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
# Uninstall operations are needed because the language server is able to use multiple | ||
|
@@ -29,15 +29,6 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
- name: Install pnpm | ||
run: npm i -g pnpm | ||
- name: Setup Rust | ||
uses: ATiltedTree/setup-rust@v1 | ||
with: | ||
rust-version: nightly | ||
components: clippy | ||
- name: Install Dependencies Ubuntu | ||
run: | | ||
sudo apt-get install libprotobuf-dev protobuf-compiler libprotobuf-c-dev protobuf-c-compiler | ||
|
@@ -61,18 +52,10 @@ jobs: | |
repository: lf-lang/lingua-franca | ||
submodules: true | ||
ref: ${{ inputs.compiler-ref }} | ||
- name: Run language server Python tests without PyLint | ||
run: ./gradlew test --tests org.lflang.tests.lsp.LspTests.pythonSyntaxOnlyValidationTest | ||
- name: Report to CodeCov | ||
uses: codecov/[email protected] | ||
with: | ||
file: org.lflang.tests/build/reports/xml/jacoco | ||
fail_ci_if_error: false | ||
verbose: true | ||
- name: Install pylint | ||
run: python3 -m pip install pylint | ||
run: pip install pylint==2.11.1 | ||
- name: Run language server tests | ||
run: ./gradlew clean test --tests org.lflang.tests.lsp.LspTests.*ValidationTest | ||
run: ./gradlew clean test --tests org.lflang.tests.lsp.LspTests.pythonValidationTest | ||
- name: Report to CodeCov | ||
uses: codecov/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters