Skip to content

Commit 8074178

Browse files
authored
Fix some small issues in CircleCI configs (#595)
1 parent cfe09bb commit 8074178

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
- run:
150150
name: Run Tests
151151
command: |
152-
CCI_NODE_TESTS=$(circleci tests glob "tests/**/*_test.py" "tests/**/test_*.py" | circleci tests split --split-by=timings)
152+
CCI_NODE_TESTS=$(circleci tests glob "tests/**/*_test.*py" "tests/**/test_*.*py" | circleci tests split --split-by=timings)
153153
printf "Test files:\n"
154154
echo "$CCI_NODE_TESTS"
155155
printf "\n"

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ setenv =
88
deps =
99
coverage
1010
pygments
11-
six==1.10.0
1211
commands =
1312
coverage run \
1413
--source={envsitepackagesdir}/basilisp \
@@ -22,7 +21,6 @@ depends = py36, py37, py38
2221
deps =
2322
coveralls
2423
coverage
25-
six==1.10.0
2624
passenv =
2725
COVERALLS_REPO_TOKEN
2826
usedevelop = true
@@ -54,7 +52,7 @@ exclude_lines =
5452
if __name__ == .__main__.:
5553

5654
[pytest]
57-
junit_family = xunit2
55+
junit_family = legacy
5856

5957
[testenv:format]
6058
deps =

0 commit comments

Comments
 (0)