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 14a18f5 commit d208cfbCopy full SHA for d208cfb
.circleci/config.yml
@@ -36,10 +36,13 @@ jobs:
36
- run:
37
name: Install Udapi
38
command: pip install ".[test]"
39
+ - run: mkdir -p test-results
40
41
name: Run pytest tests
42
# This assumes pytest is installed via the install-package step above
- command: pytest
43
+ command: pytest --junitxml=test-results/junit.xml -o junit_family=legacy
44
+ - store_test_results:
45
+ path: test-results
46
47
name: Color TextModeTrees
48
command: udapy read.Conllu files=udapi/core/tests/data/babinsky.conllu write.TextModeTrees color=1
0 commit comments