forked from lenstronomy/lenstronomy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Autoformat all codes with black and docformatter"
- Loading branch information
Showing
479 changed files
with
23,958 additions
and
47,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
"""Created on Dec 2, 2013. | ||
''' | ||
Created on Dec 2, 2013 | ||
@author: jakeret | ||
""" | ||
''' | ||
import py | ||
import subprocess | ||
|
||
|
||
def test_linkcheck(tmpdir): | ||
doctrees = tmpdir.join("doctrees") | ||
htmldir = tmpdir.join("html") | ||
subprocess.check_call( | ||
["sphinx-build", "-blinkcheck", "-d", str(doctrees), ".", str(htmldir)] | ||
) | ||
|
||
|
||
["sphinx-build", "-blinkcheck", | ||
"-d", str(doctrees), ".", str(htmldir)]) | ||
|
||
def test_build_docs(tmpdir): | ||
doctrees = tmpdir.join("doctrees") | ||
htmldir = tmpdir.join("html") | ||
subprocess.check_call( | ||
["sphinx-build", "-bhtml", "-d", str(doctrees), ".", str(htmldir)] | ||
) | ||
subprocess.check_call([ | ||
"sphinx-build", "-bhtml", | ||
"-d", str(doctrees), ".", str(htmldir)]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.