diff --git a/DESCRIPTION b/DESCRIPTION index 5cb429ef2..2b1ac042c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -22,4 +22,4 @@ License: MIT + file LICENSE URL: https://github.com/rstudio/tinytex BugReports: https://github.com/rstudio/tinytex/issues Encoding: UTF-8 -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 diff --git a/tests/test-ci.R b/tests/test-ci.R new file mode 100644 index 000000000..2b581e14e --- /dev/null +++ b/tests/test-ci.R @@ -0,0 +1,2 @@ +# run tests on CI servers (these tests depend on TeX Live) +if (!is.na(Sys.getenv('CI', NA)) && tinytex:::tlmgr_available()) testit::test_pkg('tinytex', 'test-ci') diff --git a/tests/test-travis/test-install.R b/tests/test-ci/test-install.R similarity index 100% rename from tests/test-travis/test-install.R rename to tests/test-ci/test-install.R diff --git a/tests/test-travis/test-tlmgr.R b/tests/test-ci/test-tlmgr.R similarity index 100% rename from tests/test-travis/test-tlmgr.R rename to tests/test-ci/test-tlmgr.R diff --git a/tests/test-travis.R b/tests/test-travis.R deleted file mode 100644 index 02b2fe3b0..000000000 --- a/tests/test-travis.R +++ /dev/null @@ -1,2 +0,0 @@ -# run tests on Travis (these tests depend on TeX Live) -if (!is.na(Sys.getenv('CI', NA)) && tinytex:::tlmgr_available()) testit::test_pkg('tinytex', 'test-travis')