coveralls failed to find .coveralls.yml ...

also tox.ini overrides TEST_SUITE :/  Set it in the right place
This commit is contained in:
Jean-Paul Calderone 2023-08-07 17:02:55 -04:00
parent e17c8f618e
commit b092dd57cf
3 changed files with 4 additions and 5 deletions

View File

@ -171,15 +171,16 @@ jobs:
- "run": - "run":
name: "Run Unit Tests" name: "Run Unit Tests"
environment:
TEST_SUITE: "allmydata.test.test_uri"
command: | command: |
python -m tox -e py311-coverage python -m tox -e py311-coverage
- "run": - "run":
name: "Upload Coverage" name: "Upload Coverage"
environment:
COVERALLS_REPO_TOKEN: "JPf16rLB7T2yjgATIxFzTsEgMdN1UNq6o"
command: | command: |
python -m pip install coveralls python -m pip install coveralls
python -m coveralls debug
python -m coveralls python -m coveralls
pyinstaller: pyinstaller:

View File

@ -1,2 +0,0 @@
service_name: "circleci"
repo_token: "JPf16rLB7T2yjgATIxFzTsEgMdN1UNq6o"

View File

@ -55,7 +55,7 @@ extras =
setenv = setenv =
# Define TEST_SUITE in the environment as an aid to constructing the # Define TEST_SUITE in the environment as an aid to constructing the
# correct test command below. # correct test command below.
TEST_SUITE = allmydata TEST_SUITE = allmydata.test.test_uri
commands = commands =
# As an aid to debugging, dump all of the Python packages and their # As an aid to debugging, dump all of the Python packages and their