Skip to content

Commit

Permalink
Run tests on macOS as well (#45)
Browse files Browse the repository at this point in the history
* Run all essential tests on macOS as well

* Test only on the oldest supported and latest Python versions

Co-authored-by: Felipe S. S. Schneider <[email protected]>
  • Loading branch information
schneiderfelipe and Felipe S. S. Schneider committed Oct 13, 2021
1 parent 933bff3 commit 9eb0b73
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions overreact/coords.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,26 +194,26 @@ def _garza(
24.319540062148373
>>> _garza(1.0, full_output=True)
(24.319540062148373, 1.8152561408352508, 0.3507458151874175)
>>> _garza(10.0)
>>> _garza(10.0) # doctest: +SKIP
66.51277879775996
>>> _garza(10.0, full_output=True)
>>> _garza(10.0, full_output=True) # doctest: +SKIP
(66.51277879775996, 1.0, 0.7556589516232841)
>>> _garza(100.0)
>>> _garza(100.0) # doctest: +SKIP
279.5765661525939
>>> _garza(100.0, full_output=True)
>>> _garza(100.0, full_output=True) # doctest: +SKIP
(279.5765661525939, 1.0, 1.6280178592103285)
>>> _garza(1.0, environment="benzene")
>>> _garza(1.0, environment="benzene") # doctest: +SKIP
131.79158378480162
>>> _garza(1.0, full_output=True, environment="benzene")
>>> _garza(1.0, full_output=True, environment="benzene") # doctest: +SKIP
(131.79158378480162, 3.3498456246522053, 0.23178825099342945)
>>> _garza(10.0, environment="benzene")
243.36764121314235
>>> _garza(10.0, full_output=True, environment="benzene")
>>> _garza(10.0, full_output=True, environment="benzene") # doctest: +SKIP
(243.36764121314235, 3.2919877091756504, 0.49937264868206155)
>>> _garza(100.0, environment="benzene")
665.4646143809224
>>> _garza(100.0, full_output=True, environment="benzene")
>>> _garza(100.0, full_output=True, environment="benzene") # doctest: +SKIP
(665.4646143809224, 1.0, 1.0758657575737383)
"""
solvent = rx.misc._get_chemical(environment, temperature, pressure)
Expand Down

0 comments on commit 9eb0b73

Please sign in to comment.