Skip to content

Commit

Permalink
try ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feuermagier committed Jul 11, 2024
1 parent 29333b8 commit 3f6068a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: mvn -B clean package --file pom.xml
run: mvn -B clean package -DskipTests --file pom.xml && mvn -B test --file pom.xml

- uses: actions/upload-artifact@v4
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import de.firemage.autograder.api.Linter;
import de.firemage.autograder.api.TempLocation;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.IOException;
Expand All @@ -10,6 +11,7 @@

import static org.junit.jupiter.api.Assertions.*;

// @Disabled("This test is disabled because it requires the autograder-full.jar to be present in the target directory, which is not the case in the CI pipeline.")
class AutograderLoaderTest {
@Test
void testLoadFromFile() throws IOException {
Expand Down

0 comments on commit 3f6068a

Please sign in to comment.