Skip to content

Commit

Permalink
change test running command
Browse files Browse the repository at this point in the history
  • Loading branch information
OlteanuRares committed Oct 27, 2023
1 parent ede9e85 commit a20e166
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
pip install --upgrade pip;
pip install -r test_requirements.txt;
pip install -e .;
pytest -vvvv --junit-xml=junit.xml --html=test_report.html --self-contained-html --cov=pycaption --cov-report=xml:coverage.xml;
pytest -vvvv --color=yes --junit-xml=junit.xml --cov=pycaption --cov-report xml:coverage.xml;
"
volumes:
- .:/pycaption
Expand All @@ -20,7 +20,7 @@ services:
pip install --upgrade pip;
pip install -r test_requirements.txt;
pip install -e .;
pytest -vvvv --junit-xml=junit.xml --html=test_report.html --self-contained-html --cov=pycaption --cov-report=xml:coverage.xml;
pytest -vvvv --color=yes --junit-xml=junit.xml --cov=pycaption --cov-report xml:coverage.xml;
"
volumes:
- .:/pycaption
Expand All @@ -32,7 +32,7 @@ services:
pip install --upgrade pip;
pip install -r test_requirements.txt;
pip install -e .;
pytest -vvvv --junit-xml=junit.xml --html=test_report.html --self-contained-html --cov=pycaption --cov-report=xml:coverage.xml;
pytest -vvvv --color=yes --junit-xml=junit.xml --cov=pycaption --cov-report xml:coverage.xml;
"
volumes:
- .:/pycaption
Expand All @@ -44,7 +44,7 @@ services:
pip install --upgrade pip;
pip install -r test_requirements.txt;
pip install -e .;
pytest -vvvv --junit-xml=junit.xml --html=test_report.html --self-contained-html --cov=pycaption --cov-report=xml:coverage.xml;
pytest -vvvv --color=yes --junit-xml=junit.xml --cov=pycaption --cov-report xml:coverage.xml;
"
volumes:
- .:/pycaption
Expand All @@ -56,7 +56,7 @@ services:
pip install --upgrade pip;
pip install -r test_requirements.txt;
pip install -e .;
pytest -vvvv --junit-xml=junit.xml --html=test_report.html --self-contained-html --cov=pycaption --cov-report=xml:coverage.xml;
pytest -vvvv --color=yes --junit-xml=junit.xml --cov=pycaption --cov-report xml:coverage.xml;
"
volumes:
- .:/pycaption
1 change: 0 additions & 1 deletion test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
pytest
pytest-cov
pytest-lazy-fixture
pytest-html
beautifulsoup4>=4.8.1
lxml>=4.9.1
cssutils>=2.0.0

0 comments on commit a20e166

Please sign in to comment.