Commit fdef375a authored by Godefroid Chapelle's avatar Godefroid Chapelle

Problem: wrong naming

Solution: fix it

btw, exclude CI only file from sdist
parent 0bcfaeb1
...@@ -16,5 +16,5 @@ prune .travis ...@@ -16,5 +16,5 @@ prune .travis
recursive-exclude builds ci_build.sh recursive-exclude builds ci_build.sh
recursive-exclude news * recursive-exclude news *
exclude .deepsource.toml exclude .deepsource.toml
exclude ci_build.sh exclude ci_build.sh Makefile.builds
exclude news exclude news
include Makefile include Makefile
test_with_coverage: test_without_coverage:
PYTHONWARNINGS=$(PYTHONWARNINGS) bin/test -c -vvv PYTHONWARNINGS=$(PYTHONWARNINGS) bin/test -c -vvv
test_without_coverage: test_with_coverage:
PYTHONWARNINGS=$(PYTHONWARNINGS) RUN_COVERAGE= COVERAGE_REPORT= /home/buildout/sandbox/bin/test -c -vvv PYTHONWARNINGS=$(PYTHONWARNINGS) RUN_COVERAGE= COVERAGE_REPORT= /home/buildout/sandbox/bin/test -c -vvv
...@@ -9,4 +9,4 @@ cd ../.. ...@@ -9,4 +9,4 @@ cd ../..
# which breaks test suite # which breaks test suite
pip${PYTHON_VER} uninstall -y six || true pip${PYTHON_VER} uninstall -y six || true
python${PYTHON_VER} dev.py python${PYTHON_VER} dev.py
make -f Makefile.builds test_with_coverage make -f Makefile.builds test_without_coverage
...@@ -5,4 +5,4 @@ set -e ...@@ -5,4 +5,4 @@ set -e
cd ../.. cd ../..
docker build -f .github/workflows/Dockerfile --tag centos_buildout:python${PYTHON_VER} --build-arg PYTHON_VER=${PYTHON_VER} . docker build -f .github/workflows/Dockerfile --tag centos_buildout:python${PYTHON_VER} --build-arg PYTHON_VER=${PYTHON_VER} .
docker run "centos_buildout:python${PYTHON_VER}" make -f Makefile.builds test_without_coverage docker run "centos_buildout:python${PYTHON_VER}" make -f Makefile.builds test_with_coverage
...@@ -5,4 +5,4 @@ set -e ...@@ -5,4 +5,4 @@ set -e
cd ../.. cd ../..
docker build -f .github/workflows/Dockerfile-debian --tag debian_buildout:python${PYTHON_VER} --build-arg PYTHON_VER=${PYTHON_VER} . docker build -f .github/workflows/Dockerfile-debian --tag debian_buildout:python${PYTHON_VER} --build-arg PYTHON_VER=${PYTHON_VER} .
docker run "debian_buildout:python${PYTHON_VER}" make -f Makefile.builds test_without_coverage docker run "debian_buildout:python${PYTHON_VER}" make -f Makefile.builds test_with_coverage
...@@ -5,4 +5,4 @@ set -e ...@@ -5,4 +5,4 @@ set -e
cd ../.. cd ../..
docker build -f .github/workflows/Dockerfile-debian-system --tag debian_system_buildout . docker build -f .github/workflows/Dockerfile-debian-system --tag debian_system_buildout .
docker run debian_system_buildout make -f Makefile.builds test_without_coverage docker run debian_system_buildout make -f Makefile.builds test_with_coverage
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment