├── .codecov.yml ├── .coveralls.yml ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── History.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── mozdownload ├── __init__.py ├── cli.py ├── errors.py ├── factory.py ├── parser.py ├── scraper.py ├── treeherder.py └── utils.py ├── pytest.ini ├── requirements.txt ├── requirements └── tests.txt ├── setup.cfg ├── setup.py ├── tests ├── base_scraper │ ├── manifest.ini │ └── test_base_scraper.py ├── cli │ ├── manifest.ini │ ├── test_cli_arguments.py │ ├── test_cli_print_url.py │ ├── test_correct_scraper.py │ └── test_output.py ├── conftest.py ├── daily_scraper │ ├── manifest.ini │ ├── test_daily_indices.py │ ├── test_daily_scraper.py │ ├── test_invalid_branch.py │ ├── test_invalid_build.py │ ├── test_invalid_date.py │ ├── test_invalid_platform.py │ └── test_revision.py ├── data │ ├── directoryparser │ │ ├── file1.txt │ │ ├── file2.txt │ │ ├── file3.txt │ │ ├── file4.txt │ │ ├── filter │ │ │ ├── 1374568307 │ │ │ │ └── firefox-25.0a1.en-US.win32.installer.exe │ │ │ ├── 1374573725 │ │ │ │ └── firefox-25.0a1.en-US.win32.installer.exe │ │ │ ├── 1374583608 │ │ │ │ └── firefox-25.0a1.en-US.win32.installer.exe │ │ │ └── to_be_filtered_out.txt │ │ └── some spaces │ │ │ └── file 1.txt │ ├── download_test.txt │ ├── fenix │ │ ├── nightly │ │ │ └── 2022 │ │ │ │ └── 11 │ │ │ │ ├── 2022-11-14-17-01-36-fenix-108.0b1-android-arm64-v8a │ │ │ │ └── fenix-108.0b1.multi.android-arm64-v8a.apk │ │ │ │ ├── 2022-11-14-17-01-36-fenix-108.0b1-android-armeabi-v7a │ │ │ │ └── fenix-108.0b1.multi.android-armeabi-v7a.apk │ │ │ │ ├── 2022-11-14-17-01-36-fenix-108.0b1-android-x86 │ │ │ │ └── fenix-108.0b1.multi.android-x86.apk │ │ │ │ └── 2022-11-14-17-01-36-fenix-108.0b1-android-x86_64 │ │ │ │ └── fenix-108.0b1.multi.android-x86_64.apk │ │ └── releases │ │ │ ├── 119.0 │ │ │ └── android │ │ │ │ ├── fenix-119.0-android-arm64-v8a │ │ │ │ └── fenix-119.0.multi.android-arm64-v8a.apk │ │ │ │ ├── fenix-119.0-android-armeabi-v7a │ │ │ │ └── fenix-119.0.multi.android-armeabi-v7a.apk │ │ │ │ ├── fenix-119.0-android-x86 │ │ │ │ └── fenix-119.0.multi.android-x86.apk │ │ │ │ └── fenix-119.0-android-x86_64 │ │ │ │ └── fenix-119.0.multi.android-x86_64.apk │ │ │ ├── 119.0b9 │ │ │ └── placeholder.txt │ │ │ ├── 120.0b9 │ │ │ └── android │ │ │ │ ├── fenix-120.0b9-android-arm64-v8a │ │ │ │ └── fenix-120.0b9.multi.android-arm64-v8a.apk │ │ │ │ ├── fenix-120.0b9-android-armeabi-v7a │ │ │ │ └── fenix-120.0b9.multi.android-armeabi-v7a.apk │ │ │ │ ├── fenix-120.0b9-android-x86 │ │ │ │ └── fenix-120.0b9.multi.android-x86.apk │ │ │ │ └── fenix-120.0b9-android-x86_64 │ │ │ │ └── fenix-120.0b9.multi.android-x86_64.apk │ │ │ └── 120.1.0 │ │ │ └── android │ │ │ ├── fenix-120.1.0-android-arm64-v8a │ │ │ └── fenix-120.1.0.multi.android-arm64-v8a.apk │ │ │ ├── fenix-120.1.0-android-armeabi-v7a │ │ │ └── fenix-120.1.0.multi.android-armeabi-v7a.apk │ │ │ ├── fenix-120.1.0-android-x86 │ │ │ └── fenix-120.1.0.multi.android-x86.apk │ │ │ └── fenix-120.1.0-android-x86_64 │ │ │ └── fenix-120.1.0.multi.android-x86_64.apk │ ├── firefox │ │ ├── candidates │ │ │ ├── 17.0.1esr-candidates │ │ │ │ └── placeholder.txt │ │ │ ├── 21.0-candidates │ │ │ │ └── build1 │ │ │ │ │ └── win32 │ │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup Stub 21.0.exe │ │ │ ├── 22.0b2-candidates │ │ │ │ └── placeholder.txt │ │ │ ├── 23.0.1-candidates │ │ │ │ ├── build1 │ │ │ │ │ ├── linux-i686 │ │ │ │ │ │ └── en-US │ │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ │ ├── linux-x86_64 │ │ │ │ │ │ └── en-US │ │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ │ ├── mac │ │ │ │ │ │ └── en-US │ │ │ │ │ │ │ └── Firefox 23.0.1.dmg │ │ │ │ │ ├── win32 │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ │ │ └── en-US │ │ │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ │ └── win64 │ │ │ │ │ │ └── en-US │ │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ └── build3 │ │ │ │ │ ├── linux-i686 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ │ ├── linux-x86_64 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ │ ├── mac │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox 23.0.1.dmg │ │ │ │ │ ├── win32 │ │ │ │ │ ├── de │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ │ └── en-US │ │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ │ └── win64 │ │ │ │ │ └── en-US │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ ├── 24.0b1-candidates │ │ │ │ └── build1 │ │ │ │ │ ├── linux-i686 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-24.0b1.tar.bz2 │ │ │ │ │ ├── linux-x86_64 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-24.0b1.tar.bz2 │ │ │ │ │ ├── mac │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox 24.0b1.dmg │ │ │ │ │ ├── win32 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox Setup 24.0b1.exe │ │ │ │ │ └── win64 │ │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup 24.0b1.exe │ │ │ └── 24.0esr-candidates │ │ │ │ └── build1 │ │ │ │ ├── linux-i686 │ │ │ │ └── en-US │ │ │ │ │ └── firefox-24.0esr.tar.bz2 │ │ │ │ ├── linux-x86_64 │ │ │ │ └── en-US │ │ │ │ │ └── firefox-24.0esr.tar.bz2 │ │ │ │ ├── mac │ │ │ │ └── en-US │ │ │ │ │ └── Firefox 24.0esr.dmg │ │ │ │ ├── win32 │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup 24.0esr.exe │ │ │ │ └── win64 │ │ │ │ └── en-US │ │ │ │ └── Firefox Setup 24.0esr.exe │ │ ├── nightly │ │ │ ├── 2013 │ │ │ │ ├── 10 │ │ │ │ │ ├── 2013-10-01-03-02-04-mozilla-aurora │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.txt │ │ │ │ │ ├── 2013-10-01-03-02-04-mozilla-central-l10n │ │ │ │ │ │ ├── firefox-27.0a1.it.win32.installer.exe │ │ │ │ │ │ └── firefox-27.0a1.sv-SE.win32.installer.exe │ │ │ │ │ ├── 2013-10-01-03-02-04-mozilla-central │ │ │ │ │ │ ├── Firefox Installer.en-US.exe │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-aarch64.tar.xz │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-aarch64.txt │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-i686.tar.xz │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-i686.txt │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-x86_64.tar.xz │ │ │ │ │ │ ├── firefox-27.0a1.en-US.linux-x86_64.txt │ │ │ │ │ │ ├── firefox-27.0a1.en-US.mac.dmg │ │ │ │ │ │ ├── firefox-27.0a1.en-US.mac.txt │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win32.txt │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win64.installer.exe │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win64.txt │ │ │ │ │ │ └── firefox-27.0a1.en-US.win64.zip │ │ │ │ │ └── 2013-10-01-03-02-04-ux │ │ │ │ │ │ ├── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.txt │ │ │ │ ├── 07 │ │ │ │ │ ├── 2013-07-02-03-12-13-mozilla-central │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ ├── 2013-07-02-04-12-13-mozilla-central │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ ├── 2013-07-06-03-12-13-aurora │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ ├── 2013-07-06-03-12-13-mozilla-central │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ │ └── 2013-07-06-03-12-13-ux │ │ │ │ │ │ └── firefox-27.0a1.en-US.win32.installer.exe │ │ │ │ └── 09 │ │ │ │ │ └── 2013-09-30-03-02-04-mozilla-central │ │ │ │ │ ├── firefox-27.0a1.en-US.win32.installer-stub.exe │ │ │ │ │ ├── firefox-27.0a1.en-US.win64-x86_64.installer.exe │ │ │ │ │ └── firefox-27.0a1.en-US.win64-x86_64.txt │ │ │ ├── latest-mozilla-aurora │ │ │ │ └── firefox-27.0a1.en-US.win32.txt │ │ │ ├── latest-mozilla-central │ │ │ │ ├── firefox-27.0a1.en-US.linux-aarch64.txt │ │ │ │ ├── firefox-27.0a1.en-US.linux-i686.txt │ │ │ │ ├── firefox-27.0a1.en-US.linux-x86_64.txt │ │ │ │ ├── firefox-27.0a1.en-US.mac.txt │ │ │ │ ├── firefox-27.0a1.en-US.win32.txt │ │ │ │ └── firefox-38.0a1.en-US.win64.txt │ │ │ └── latest-ux │ │ │ │ └── firefox-27.0a1.en-US.win32.txt │ │ ├── releases │ │ │ ├── 17.0.1esr │ │ │ │ └── placeholder.txt │ │ │ ├── 21.0 │ │ │ │ └── win32 │ │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup Stub 21.0.exe │ │ │ ├── 22.0b2 │ │ │ │ └── placeholder.txt │ │ │ ├── 23.0.1 │ │ │ │ ├── linux-i686 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ ├── linux-x86_64 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-23.0.1.tar.xz │ │ │ │ ├── mac │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox 23.0.1.dmg │ │ │ │ ├── win32 │ │ │ │ │ ├── de │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ │ └── en-US │ │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ │ └── win64 │ │ │ │ │ └── en-US │ │ │ │ │ ├── Firefox Installer.exe │ │ │ │ │ └── Firefox Setup 23.0.1.exe │ │ │ ├── 24.0b1 │ │ │ │ ├── linux-i686 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-24.0b1.tar.bz2 │ │ │ │ ├── linux-x86_64 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── firefox-24.0b1.tar.bz2 │ │ │ │ ├── mac │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox 24.0b1.dmg │ │ │ │ ├── win32 │ │ │ │ │ └── en-US │ │ │ │ │ │ └── Firefox Setup 24.0b1.exe │ │ │ │ └── win64 │ │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup 24.0b1.exe │ │ │ └── 24.0esr │ │ │ │ ├── linux-i686 │ │ │ │ └── en-US │ │ │ │ │ └── firefox-24.0esr.tar.bz2 │ │ │ │ ├── linux-x86_64 │ │ │ │ └── en-US │ │ │ │ │ └── firefox-24.0esr.tar.bz2 │ │ │ │ ├── mac │ │ │ │ └── en-US │ │ │ │ │ └── Firefox 24.0esr.dmg │ │ │ │ ├── win32 │ │ │ │ └── en-US │ │ │ │ │ └── Firefox Setup 24.0esr.exe │ │ │ │ └── win64 │ │ │ │ └── en-US │ │ │ │ └── Firefox Setup 24.0esr.exe │ │ └── try-builds │ │ │ └── test-user@mozilla.com-8fcac92cfcad │ │ │ ├── try-linux-debug │ │ │ └── firefox-38.0a1.en-US.linux-i686.tar.bz2 │ │ │ ├── try-linux64 │ │ │ └── firefox-38.0a1.en-US.linux-x86_64.tar.bz2 │ │ │ ├── try-macosx64 │ │ │ └── firefox-38.0a1.en-US.mac.dmg │ │ │ ├── try-win32 │ │ │ └── firefox-38.0a1.en-US.win32.installer.exe │ │ │ └── try-win64 │ │ │ └── firefox-38.0a1.en-US.win64.installer.exe │ └── thunderbird │ │ ├── candidates │ │ ├── 10.0.1esr-candidates │ │ │ └── placeholder.txt │ │ ├── 16.0-candidates │ │ │ └── placeholder.txt │ │ ├── 17.0-candidates │ │ │ ├── build1 │ │ │ │ └── placeholder.txt │ │ │ └── build3 │ │ │ │ ├── linux-i686 │ │ │ │ └── en-US │ │ │ │ │ └── thunderbird-17.0.tar.xz │ │ │ │ ├── linux-x86_64 │ │ │ │ └── en-US │ │ │ │ │ └── thunderbird-17.0.tar.xz │ │ │ │ ├── mac │ │ │ │ └── en-US │ │ │ │ │ └── Thunderbird 17.0.dmg │ │ │ │ └── win32 │ │ │ │ ├── de │ │ │ │ └── Thunderbird Setup 17.0.exe │ │ │ │ └── en-US │ │ │ │ └── Thunderbird Setup 17.0.exe │ │ ├── 17.0.1esr-candidates │ │ │ └── build1 │ │ │ │ ├── linux-i686 │ │ │ │ └── en-US │ │ │ │ │ └── thunderbird-17.0.1esr.tar.bz2 │ │ │ │ ├── linux-x86_64 │ │ │ │ └── en-US │ │ │ │ │ └── thunderbird-17.0.1esr.tar.bz2 │ │ │ │ ├── mac │ │ │ │ └── en-US │ │ │ │ │ └── Thunderbird 17.0.1esr.dmg │ │ │ │ └── win32 │ │ │ │ └── en-US │ │ │ │ └── Thunderbird Setup 17.0.1esr.exe │ │ ├── 17.0b3-candidates │ │ │ └── placeholder.txt │ │ └── 20.0b1-candidates │ │ │ └── build1 │ │ │ ├── linux-i686 │ │ │ └── en-US │ │ │ │ └── thunderbird-20.0b1.tar.bz2 │ │ │ ├── linux-x86_64 │ │ │ └── en-US │ │ │ │ └── thunderbird-20.0b1.tar.bz2 │ │ │ ├── mac │ │ │ └── en-US │ │ │ │ └── Thunderbird 20.0b1.dmg │ │ │ └── win32 │ │ │ └── en-US │ │ │ └── Thunderbird Setup 20.0b1.exe │ │ ├── nightly │ │ ├── 2013 │ │ │ ├── 10 │ │ │ │ ├── 2013-10-01-03-02-04-comm-aurora │ │ │ │ │ └── thunderbird-27.0a1.en-US.win32.installer.exe │ │ │ │ ├── 2013-10-01-03-02-04-comm-central-l10n │ │ │ │ │ ├── thunderbird-27.0a1.it.win32.installer.exe │ │ │ │ │ └── thunderbird-27.0a1.sv-SE.win32.installer.exe │ │ │ │ └── 2013-10-01-03-02-04-comm-central │ │ │ │ │ ├── thunderbird-27.0a1.en-US.linux-i686.tar.xz │ │ │ │ │ ├── thunderbird-27.0a1.en-US.linux-i686.txt │ │ │ │ │ ├── thunderbird-27.0a1.en-US.linux-x86_64.tar.xz │ │ │ │ │ ├── thunderbird-27.0a1.en-US.mac.dmg │ │ │ │ │ ├── thunderbird-27.0a1.en-US.win32.installer.exe │ │ │ │ │ └── thunderbird-27.0a1.en-US.win64-x86_64.installer.exe │ │ │ └── 07 │ │ │ │ ├── 2013-07-10-10-01-53-comm-central │ │ │ │ └── thunderbird-27.0a1.en-US.win32.installer.exe │ │ │ │ └── 2013-07-10-11-01-53-comm-central │ │ │ │ └── thunderbird-27.0a1.en-US.win32.installer.exe │ │ ├── latest-comm-aurora │ │ │ └── thunderbird-27.0a1.en-US.win32.txt │ │ └── latest-comm-central │ │ │ ├── thunderbird-27.0a1.en-US.linux-i686.txt │ │ │ ├── thunderbird-27.0a1.en-US.linux-x86_64.txt │ │ │ ├── thunderbird-27.0a1.en-US.mac.txt │ │ │ ├── thunderbird-27.0a1.en-US.win32.txt │ │ │ └── thunderbird-27.0a1.en-US.win64-x86_64.txt │ │ └── releases │ │ ├── 10.0.1esr │ │ └── placeholder.txt │ │ ├── 16.0 │ │ └── placeholder.txt │ │ ├── 17.0.1esr │ │ ├── linux-i686 │ │ │ └── en-US │ │ │ │ └── thunderbird-17.0.1esr.tar.bz2 │ │ ├── linux-x86_64 │ │ │ └── en-US │ │ │ │ └── thunderbird-17.0.1esr.tar.bz2 │ │ ├── mac │ │ │ └── en-US │ │ │ │ └── Thunderbird 17.0.1esr.dmg │ │ └── win32 │ │ │ └── en-US │ │ │ └── Thunderbird Setup 17.0.1esr.exe │ │ ├── 17.0 │ │ ├── linux-i686 │ │ │ └── en-US │ │ │ │ └── thunderbird-17.0.tar.xz │ │ ├── linux-x86_64 │ │ │ └── en-US │ │ │ │ └── thunderbird-17.0.tar.xz │ │ ├── mac │ │ │ └── en-US │ │ │ │ └── Thunderbird 17.0.dmg │ │ └── win32 │ │ │ ├── de │ │ │ └── Thunderbird Setup 17.0.exe │ │ │ └── en-US │ │ │ └── Thunderbird Setup 17.0.exe │ │ ├── 17.0b3 │ │ └── placeholder.txt │ │ └── 20.0b1 │ │ ├── linux-i686 │ │ └── en-US │ │ │ └── thunderbird-20.0b1.tar.bz2 │ │ ├── linux-x86_64 │ │ └── en-US │ │ │ └── thunderbird-20.0b1.tar.bz2 │ │ ├── mac │ │ └── en-US │ │ │ └── Thunderbird 20.0b1.dmg │ │ └── win32 │ │ └── en-US │ │ └── Thunderbird Setup 20.0b1.exe ├── direct_scraper │ ├── manifest.ini │ └── test_direct_scraper.py ├── directory_parser │ ├── manifest.ini │ └── test_directory_parser.py ├── factory │ ├── manifest.ini │ ├── test_factory_scraper.py │ ├── test_factory_unused_options.py │ └── test_missing_mandatory_options.py ├── manifest.ini ├── release_candidate_scraper │ ├── manifest.ini │ ├── test_release_candidate_scraper.py │ ├── test_release_candidate_scraper_indices.py │ └── test_release_candidate_scraper_latest.py ├── release_scraper │ ├── manifest.ini │ ├── test_release_scraper.py │ └── test_release_scraper_latest.py ├── remote │ ├── manifest.ini │ ├── test_devedition.py │ ├── test_fenix.py │ ├── test_firefox.py │ └── test_thunderbird.py ├── test_cases.md ├── treeherder │ ├── data │ │ ├── jobs.json │ │ ├── optioncollectionhash.json │ │ └── push.json │ ├── manifest.ini │ ├── test_api.py │ └── test_api_invalid_usage.py └── try_scraper │ ├── manifest.ini │ ├── test_invalid_revision.py │ └── test_try_scraper.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: github-actions 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @whimboo 2 | @mozilla/firefox-automation 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/README.md -------------------------------------------------------------------------------- /mozdownload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/__init__.py -------------------------------------------------------------------------------- /mozdownload/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/cli.py -------------------------------------------------------------------------------- /mozdownload/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/errors.py -------------------------------------------------------------------------------- /mozdownload/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/factory.py -------------------------------------------------------------------------------- /mozdownload/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/parser.py -------------------------------------------------------------------------------- /mozdownload/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/scraper.py -------------------------------------------------------------------------------- /mozdownload/treeherder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/treeherder.py -------------------------------------------------------------------------------- /mozdownload/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/mozdownload/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/setup.py -------------------------------------------------------------------------------- /tests/base_scraper/manifest.ini: -------------------------------------------------------------------------------- 1 | [test_base_scraper.py] 2 | -------------------------------------------------------------------------------- /tests/base_scraper/test_base_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/base_scraper/test_base_scraper.py -------------------------------------------------------------------------------- /tests/cli/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/cli/manifest.ini -------------------------------------------------------------------------------- /tests/cli/test_cli_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/cli/test_cli_arguments.py -------------------------------------------------------------------------------- /tests/cli/test_cli_print_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/cli/test_cli_print_url.py -------------------------------------------------------------------------------- /tests/cli/test_correct_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/cli/test_correct_scraper.py -------------------------------------------------------------------------------- /tests/cli/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/cli/test_output.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/daily_scraper/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/manifest.ini -------------------------------------------------------------------------------- /tests/daily_scraper/test_daily_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_daily_indices.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_daily_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_daily_scraper.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_invalid_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_invalid_branch.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_invalid_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_invalid_build.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_invalid_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_invalid_date.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_invalid_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_invalid_platform.py -------------------------------------------------------------------------------- /tests/daily_scraper/test_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/daily_scraper/test_revision.py -------------------------------------------------------------------------------- /tests/data/directoryparser/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/directoryparser/file2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/directoryparser/file3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/directoryparser/file4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/directoryparser/filter/1374568307/firefox-25.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/directoryparser/filter/1374568307/firefox-25.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/directoryparser/filter/1374573725/firefox-25.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/directoryparser/filter/1374573725/firefox-25.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/directoryparser/filter/1374583608/firefox-25.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/directoryparser/filter/1374583608/firefox-25.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/directoryparser/filter/to_be_filtered_out.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/directoryparser/some spaces/file 1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/download_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/download_test.txt -------------------------------------------------------------------------------- /tests/data/fenix/nightly/2022/11/2022-11-14-17-01-36-fenix-108.0b1-android-arm64-v8a/fenix-108.0b1.multi.android-arm64-v8a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/nightly/2022/11/2022-11-14-17-01-36-fenix-108.0b1-android-armeabi-v7a/fenix-108.0b1.multi.android-armeabi-v7a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/nightly/2022/11/2022-11-14-17-01-36-fenix-108.0b1-android-x86/fenix-108.0b1.multi.android-x86.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/nightly/2022/11/2022-11-14-17-01-36-fenix-108.0b1-android-x86_64/fenix-108.0b1.multi.android-x86_64.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/119.0/android/fenix-119.0-android-arm64-v8a/fenix-119.0.multi.android-arm64-v8a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/119.0/android/fenix-119.0-android-armeabi-v7a/fenix-119.0.multi.android-armeabi-v7a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/119.0/android/fenix-119.0-android-x86/fenix-119.0.multi.android-x86.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/119.0/android/fenix-119.0-android-x86_64/fenix-119.0.multi.android-x86_64.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/119.0b9/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.0b9/android/fenix-120.0b9-android-arm64-v8a/fenix-120.0b9.multi.android-arm64-v8a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.0b9/android/fenix-120.0b9-android-armeabi-v7a/fenix-120.0b9.multi.android-armeabi-v7a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.0b9/android/fenix-120.0b9-android-x86/fenix-120.0b9.multi.android-x86.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.0b9/android/fenix-120.0b9-android-x86_64/fenix-120.0b9.multi.android-x86_64.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.1.0/android/fenix-120.1.0-android-arm64-v8a/fenix-120.1.0.multi.android-arm64-v8a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.1.0/android/fenix-120.1.0-android-armeabi-v7a/fenix-120.1.0.multi.android-armeabi-v7a.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.1.0/android/fenix-120.1.0-android-x86/fenix-120.1.0.multi.android-x86.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fenix/releases/120.1.0/android/fenix-120.1.0-android-x86_64/fenix-120.1.0.multi.android-x86_64.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/firefox/candidates/17.0.1esr-candidates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/17.0.1esr-candidates/placeholder.txt -------------------------------------------------------------------------------- /tests/data/firefox/candidates/21.0-candidates/build1/win32/en-US/Firefox Setup Stub 21.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/21.0-candidates/build1/win32/en-US/Firefox Setup Stub 21.0.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/22.0b2-candidates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/22.0b2-candidates/placeholder.txt -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/linux-i686/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/linux-i686/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/linux-x86_64/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/linux-x86_64/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/mac/en-US/Firefox 23.0.1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/mac/en-US/Firefox 23.0.1.dmg -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/win32/de/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/win32/de/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/win32/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/win32/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/win32/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/win32/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/win64/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/win64/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build1/win64/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build1/win64/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/linux-i686/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/linux-i686/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/linux-x86_64/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/linux-x86_64/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/mac/en-US/Firefox 23.0.1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/mac/en-US/Firefox 23.0.1.dmg -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/win32/de/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/win32/de/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/win32/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/win32/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/win32/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/win32/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/win64/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/win64/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/23.0.1-candidates/build3/win64/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/23.0.1-candidates/build3/win64/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0b1-candidates/build1/linux-i686/en-US/firefox-24.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0b1-candidates/build1/linux-i686/en-US/firefox-24.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0b1-candidates/build1/linux-x86_64/en-US/firefox-24.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0b1-candidates/build1/linux-x86_64/en-US/firefox-24.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0b1-candidates/build1/mac/en-US/Firefox 24.0b1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0b1-candidates/build1/mac/en-US/Firefox 24.0b1.dmg -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0b1-candidates/build1/win32/en-US/Firefox Setup 24.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0b1-candidates/build1/win32/en-US/Firefox Setup 24.0b1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0b1-candidates/build1/win64/en-US/Firefox Setup 24.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0b1-candidates/build1/win64/en-US/Firefox Setup 24.0b1.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0esr-candidates/build1/linux-i686/en-US/firefox-24.0esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0esr-candidates/build1/linux-i686/en-US/firefox-24.0esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0esr-candidates/build1/linux-x86_64/en-US/firefox-24.0esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0esr-candidates/build1/linux-x86_64/en-US/firefox-24.0esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0esr-candidates/build1/mac/en-US/Firefox 24.0esr.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0esr-candidates/build1/mac/en-US/Firefox 24.0esr.dmg -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0esr-candidates/build1/win32/en-US/Firefox Setup 24.0esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0esr-candidates/build1/win32/en-US/Firefox Setup 24.0esr.exe -------------------------------------------------------------------------------- /tests/data/firefox/candidates/24.0esr-candidates/build1/win64/en-US/Firefox Setup 24.0esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/candidates/24.0esr-candidates/build1/win64/en-US/Firefox Setup 24.0esr.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/07/2013-07-02-03-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/07/2013-07-02-03-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/07/2013-07-02-04-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/07/2013-07-02-04-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-aurora/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-aurora/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-ux/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/07/2013-07-06-03-12-13-ux/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.installer-stub.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.installer-stub.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64-x86_64.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64-x86_64.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64-x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/09/2013-09-30-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64-x86_64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-aurora/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-aurora/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-aurora/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-aurora/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central-l10n/firefox-27.0a1.it.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central-l10n/firefox-27.0a1.it.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central-l10n/firefox-27.0a1.sv-SE.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central-l10n/firefox-27.0a1.sv-SE.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/Firefox Installer.en-US.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/Firefox Installer.en-US.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-i686.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-i686.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-i686.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-i686.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.mac.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.mac.dmg -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.mac.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-mozilla-central/firefox-27.0a1.en-US.win64.zip -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-ux/firefox-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-ux/firefox-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-ux/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/2013/10/2013-10-01-03-02-04-ux/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-aurora/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-aurora/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-aarch64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-i686.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-i686.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.linux-x86_64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.mac.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-mozilla-central/firefox-38.0a1.en-US.win64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-mozilla-central/firefox-38.0a1.en-US.win64.txt -------------------------------------------------------------------------------- /tests/data/firefox/nightly/latest-ux/firefox-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/nightly/latest-ux/firefox-27.0a1.en-US.win32.txt -------------------------------------------------------------------------------- /tests/data/firefox/releases/17.0.1esr/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/17.0.1esr/placeholder.txt -------------------------------------------------------------------------------- /tests/data/firefox/releases/21.0/win32/en-US/Firefox Setup Stub 21.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/21.0/win32/en-US/Firefox Setup Stub 21.0.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/22.0b2/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/22.0b2/placeholder.txt -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/linux-i686/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/linux-i686/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/linux-x86_64/en-US/firefox-23.0.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/linux-x86_64/en-US/firefox-23.0.1.tar.xz -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/mac/en-US/Firefox 23.0.1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/mac/en-US/Firefox 23.0.1.dmg -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/win32/de/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/win32/de/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/win32/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/win32/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/win32/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/win32/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/win64/en-US/Firefox Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/win64/en-US/Firefox Installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/23.0.1/win64/en-US/Firefox Setup 23.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/23.0.1/win64/en-US/Firefox Setup 23.0.1.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0b1/linux-i686/en-US/firefox-24.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0b1/linux-i686/en-US/firefox-24.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0b1/linux-x86_64/en-US/firefox-24.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0b1/linux-x86_64/en-US/firefox-24.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0b1/mac/en-US/Firefox 24.0b1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0b1/mac/en-US/Firefox 24.0b1.dmg -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0b1/win32/en-US/Firefox Setup 24.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0b1/win32/en-US/Firefox Setup 24.0b1.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0b1/win64/en-US/Firefox Setup 24.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0b1/win64/en-US/Firefox Setup 24.0b1.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0esr/linux-i686/en-US/firefox-24.0esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0esr/linux-i686/en-US/firefox-24.0esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0esr/linux-x86_64/en-US/firefox-24.0esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0esr/linux-x86_64/en-US/firefox-24.0esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0esr/mac/en-US/Firefox 24.0esr.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0esr/mac/en-US/Firefox 24.0esr.dmg -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0esr/win32/en-US/Firefox Setup 24.0esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0esr/win32/en-US/Firefox Setup 24.0esr.exe -------------------------------------------------------------------------------- /tests/data/firefox/releases/24.0esr/win64/en-US/Firefox Setup 24.0esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/releases/24.0esr/win64/en-US/Firefox Setup 24.0esr.exe -------------------------------------------------------------------------------- /tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-linux-debug/firefox-38.0a1.en-US.linux-i686.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-linux-debug/firefox-38.0a1.en-US.linux-i686.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-linux64/firefox-38.0a1.en-US.linux-x86_64.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-linux64/firefox-38.0a1.en-US.linux-x86_64.tar.bz2 -------------------------------------------------------------------------------- /tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-macosx64/firefox-38.0a1.en-US.mac.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-macosx64/firefox-38.0a1.en-US.mac.dmg -------------------------------------------------------------------------------- /tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-win32/firefox-38.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-win32/firefox-38.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-win64/firefox-38.0a1.en-US.win64.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/firefox/try-builds/test-user@mozilla.com-8fcac92cfcad/try-win64/firefox-38.0a1.en-US.win64.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/10.0.1esr-candidates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/10.0.1esr-candidates/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/16.0-candidates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/16.0-candidates/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build1/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build1/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build3/linux-i686/en-US/thunderbird-17.0.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build3/linux-i686/en-US/thunderbird-17.0.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build3/linux-x86_64/en-US/thunderbird-17.0.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build3/linux-x86_64/en-US/thunderbird-17.0.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build3/mac/en-US/Thunderbird 17.0.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build3/mac/en-US/Thunderbird 17.0.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build3/win32/de/Thunderbird Setup 17.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build3/win32/de/Thunderbird Setup 17.0.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0-candidates/build3/win32/en-US/Thunderbird Setup 17.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0-candidates/build3/win32/en-US/Thunderbird Setup 17.0.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/linux-i686/en-US/thunderbird-17.0.1esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/linux-i686/en-US/thunderbird-17.0.1esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/linux-x86_64/en-US/thunderbird-17.0.1esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/linux-x86_64/en-US/thunderbird-17.0.1esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/mac/en-US/Thunderbird 17.0.1esr.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/mac/en-US/Thunderbird 17.0.1esr.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/win32/en-US/Thunderbird Setup 17.0.1esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0.1esr-candidates/build1/win32/en-US/Thunderbird Setup 17.0.1esr.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/17.0b3-candidates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/17.0b3-candidates/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/20.0b1-candidates/build1/linux-i686/en-US/thunderbird-20.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/20.0b1-candidates/build1/linux-i686/en-US/thunderbird-20.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/20.0b1-candidates/build1/linux-x86_64/en-US/thunderbird-20.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/20.0b1-candidates/build1/linux-x86_64/en-US/thunderbird-20.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/20.0b1-candidates/build1/mac/en-US/Thunderbird 20.0b1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/20.0b1-candidates/build1/mac/en-US/Thunderbird 20.0b1.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/candidates/20.0b1-candidates/build1/win32/en-US/Thunderbird Setup 20.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/candidates/20.0b1-candidates/build1/win32/en-US/Thunderbird Setup 20.0b1.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/07/2013-07-10-10-01-53-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/07/2013-07-10-10-01-53-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/07/2013-07-10-11-01-53-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/07/2013-07-10-11-01-53-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-aurora/thunderbird-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-aurora/thunderbird-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central-l10n/thunderbird-27.0a1.it.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central-l10n/thunderbird-27.0a1.it.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central-l10n/thunderbird-27.0a1.sv-SE.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central-l10n/thunderbird-27.0a1.sv-SE.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-i686.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-i686.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-i686.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-i686.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-x86_64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.linux-x86_64.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.mac.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.mac.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.win32.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.win64-x86_64.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/nightly/2013/10/2013-10-01-03-02-04-comm-central/thunderbird-27.0a1.en-US.win64-x86_64.installer.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-aurora/thunderbird-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-central/thunderbird-27.0a1.en-US.linux-i686.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-central/thunderbird-27.0a1.en-US.linux-x86_64.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-central/thunderbird-27.0a1.en-US.mac.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-central/thunderbird-27.0a1.en-US.win32.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/nightly/latest-comm-central/thunderbird-27.0a1.en-US.win64-x86_64.txt: -------------------------------------------------------------------------------- 1 | 20131001030204 2 | http://hg.mozilla.org/comm-central/rev/6b92cb377496 3 | -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/10.0.1esr/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/10.0.1esr/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/16.0/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/16.0/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0.1esr/linux-i686/en-US/thunderbird-17.0.1esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0.1esr/linux-i686/en-US/thunderbird-17.0.1esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0.1esr/linux-x86_64/en-US/thunderbird-17.0.1esr.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0.1esr/linux-x86_64/en-US/thunderbird-17.0.1esr.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0.1esr/mac/en-US/Thunderbird 17.0.1esr.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0.1esr/mac/en-US/Thunderbird 17.0.1esr.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0.1esr/win32/en-US/Thunderbird Setup 17.0.1esr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0.1esr/win32/en-US/Thunderbird Setup 17.0.1esr.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0/linux-i686/en-US/thunderbird-17.0.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0/linux-i686/en-US/thunderbird-17.0.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0/linux-x86_64/en-US/thunderbird-17.0.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0/linux-x86_64/en-US/thunderbird-17.0.tar.xz -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0/mac/en-US/Thunderbird 17.0.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0/mac/en-US/Thunderbird 17.0.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0/win32/de/Thunderbird Setup 17.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0/win32/de/Thunderbird Setup 17.0.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0/win32/en-US/Thunderbird Setup 17.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0/win32/en-US/Thunderbird Setup 17.0.exe -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/17.0b3/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/17.0b3/placeholder.txt -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/20.0b1/linux-i686/en-US/thunderbird-20.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/20.0b1/linux-i686/en-US/thunderbird-20.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/20.0b1/linux-x86_64/en-US/thunderbird-20.0b1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/20.0b1/linux-x86_64/en-US/thunderbird-20.0b1.tar.bz2 -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/20.0b1/mac/en-US/Thunderbird 20.0b1.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/20.0b1/mac/en-US/Thunderbird 20.0b1.dmg -------------------------------------------------------------------------------- /tests/data/thunderbird/releases/20.0b1/win32/en-US/Thunderbird Setup 20.0b1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/data/thunderbird/releases/20.0b1/win32/en-US/Thunderbird Setup 20.0b1.exe -------------------------------------------------------------------------------- /tests/direct_scraper/manifest.ini: -------------------------------------------------------------------------------- 1 | [test_direct_scraper.py] 2 | -------------------------------------------------------------------------------- /tests/direct_scraper/test_direct_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/direct_scraper/test_direct_scraper.py -------------------------------------------------------------------------------- /tests/directory_parser/manifest.ini: -------------------------------------------------------------------------------- 1 | [test_directory_parser.py] 2 | -------------------------------------------------------------------------------- /tests/directory_parser/test_directory_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/directory_parser/test_directory_parser.py -------------------------------------------------------------------------------- /tests/factory/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/factory/manifest.ini -------------------------------------------------------------------------------- /tests/factory/test_factory_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/factory/test_factory_scraper.py -------------------------------------------------------------------------------- /tests/factory/test_factory_unused_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/factory/test_factory_unused_options.py -------------------------------------------------------------------------------- /tests/factory/test_missing_mandatory_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/factory/test_missing_mandatory_options.py -------------------------------------------------------------------------------- /tests/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/manifest.ini -------------------------------------------------------------------------------- /tests/release_candidate_scraper/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_candidate_scraper/manifest.ini -------------------------------------------------------------------------------- /tests/release_candidate_scraper/test_release_candidate_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_candidate_scraper/test_release_candidate_scraper.py -------------------------------------------------------------------------------- /tests/release_candidate_scraper/test_release_candidate_scraper_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_candidate_scraper/test_release_candidate_scraper_indices.py -------------------------------------------------------------------------------- /tests/release_candidate_scraper/test_release_candidate_scraper_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_candidate_scraper/test_release_candidate_scraper_latest.py -------------------------------------------------------------------------------- /tests/release_scraper/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_scraper/manifest.ini -------------------------------------------------------------------------------- /tests/release_scraper/test_release_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_scraper/test_release_scraper.py -------------------------------------------------------------------------------- /tests/release_scraper/test_release_scraper_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/release_scraper/test_release_scraper_latest.py -------------------------------------------------------------------------------- /tests/remote/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/remote/manifest.ini -------------------------------------------------------------------------------- /tests/remote/test_devedition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/remote/test_devedition.py -------------------------------------------------------------------------------- /tests/remote/test_fenix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/remote/test_fenix.py -------------------------------------------------------------------------------- /tests/remote/test_firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/remote/test_firefox.py -------------------------------------------------------------------------------- /tests/remote/test_thunderbird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/remote/test_thunderbird.py -------------------------------------------------------------------------------- /tests/test_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/test_cases.md -------------------------------------------------------------------------------- /tests/treeherder/data/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/treeherder/data/jobs.json -------------------------------------------------------------------------------- /tests/treeherder/data/optioncollectionhash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/treeherder/data/optioncollectionhash.json -------------------------------------------------------------------------------- /tests/treeherder/data/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/treeherder/data/push.json -------------------------------------------------------------------------------- /tests/treeherder/manifest.ini: -------------------------------------------------------------------------------- 1 | [test_api.py] 2 | -------------------------------------------------------------------------------- /tests/treeherder/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/treeherder/test_api.py -------------------------------------------------------------------------------- /tests/treeherder/test_api_invalid_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/treeherder/test_api_invalid_usage.py -------------------------------------------------------------------------------- /tests/try_scraper/manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/try_scraper/manifest.ini -------------------------------------------------------------------------------- /tests/try_scraper/test_invalid_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/try_scraper/test_invalid_revision.py -------------------------------------------------------------------------------- /tests/try_scraper/test_try_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tests/try_scraper/test_try_scraper.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/mozdownload/HEAD/tox.ini --------------------------------------------------------------------------------