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 1b259ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
18 changes: 7 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
matrix:
include:
- language: nix
matrix:
- os: linux
- os: osx
os: linux
- language: nix
os: osx
- language: nix
os: windows
- language: python
python: "3.6"
install:
Expand All @@ -12,16 +14,10 @@ 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"
install:
- pip install --upgrade pip
- pip3 install -e .
script:
- pytest
- TEMCI_TEST_CMD=1 pytest
Empty file added doc/os_support.rst
Empty file.
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 1b259ab

Please sign in to comment.