Skip to content

Commit

Permalink
Fix travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Bechberger committed Jul 11, 2019
1 parent 5b1dd15 commit 4be7228
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,22 @@ matrix:
script: pytest
- language: python
python: "3.7"
dist: xenial
install:
- pip install --upgrade pip
- pip3 install -e .
script:
- pytest
- TEMCI_TEST_CMD=1 pytest
- language: python
python: "3.8"
python: "3.8-dev"
dist: xenial
install:
- pip install --upgrade pip
- pip3 install -e .
script:
- pytest
- pytest
addons:
apt:
packages:
- python3.8-dev
3 changes: 2 additions & 1 deletion temci/report/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ def _report_errors(self, errorneous_runs: t.List[RunData], print_func: t.Callabl
print_func("""\t{d}:\n\t\t{m}""".format(d=run.description(), m="\n\t\t".join(str(run.recorded_error).split("\n"))))


@register(ReporterRegistry, "html", Dict(unknown_keys=True) // Default({}) // Description("Deprecated setting"), deprecated=True)
@register(ReporterRegistry, "html", Dict(unknown_keys=True) // Default({}) // Description("Deprecated setting"),
deprecated=True)
class HTMLReporter(AbstractReporter):
"""
Deprecated reporter that just lives as a hull.
Expand Down

0 comments on commit 4be7228

Please sign in to comment.