mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
aa9c977880
* Initial selenium test * Try configuring Travis to run selenium tests on Sauce * Encryption key needs to be for my account, not jupyter * Install selenium on Travis * Get more data from server info file * Set cwd when launching notebook server Will this help on Travis? * Use JUPYTER_TEST_BROWSER=chrome to test with Chrome * Debugging test * Separate fixtures into conftest.py * Try with --Cls.a=b option syntax * Try using sauce labs directly, not through Travis proxy * Back to using proxy, with http instead of https Idea from https://stackoverflow.com/questions/48236104/ssl-errors-using- sauce-labs-in-travis-ci-with-selenium-webriver-tests-django-pr * Specify browserName in desired_capabilities for Sauce * Try connecting to Sauce for only some jobs in matrix * Exclude selenium tests from regular test run * Remove redundant JS test for dashboard navigation (converted to Selenium) * Re-enable other tests * Exclude selenium tests on Appveyor * Later browser versions are available on Windows * Try running tests with Firefox 57 instead of 58 * Try running with local Firefox on Travis * Install geckodriver for Selenium tests * Untar the right version of geckodriver * Try stepping back one version of Firefox again
27 lines
677 B
YAML
27 lines
677 B
YAML
# miniconda bootstrap from conda-forge recipe
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
environment:
|
|
matrix:
|
|
- CONDA_PY: 35
|
|
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
|
|
- CONDA_PY: 27
|
|
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
|
|
|
|
platform:
|
|
- x64
|
|
|
|
build: off
|
|
|
|
install:
|
|
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
|
|
- cmd: conda config --set show_channel_urls true
|
|
- cmd: conda config --add channels conda-forge
|
|
- cmd: conda update --yes --quiet conda
|
|
- cmd: conda install -y pyzmq tornado jupyter_client nbformat nbconvert ipykernel pip nodejs nose
|
|
- cmd: pip install .[test]
|
|
|
|
test_script:
|
|
- nosetests -v notebook --exclude-dir notebook\tests\selenium
|