diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-08 02:16:48 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-08 03:44:54 +0530 |
commit | 0c0ff18f7d9087c8306a8ad8713aef409a7f63f8 (patch) | |
tree | fa68124027009913800ec4aa7e69ee43004d8091 | |
parent | a26c99ac13e307bdfe7889739777b022866d2cff (diff) | |
download | hypervideo-pre-0c0ff18f7d9087c8306a8ad8713aef409a7f63f8.tar.lz hypervideo-pre-0c0ff18f7d9087c8306a8ad8713aef409a7f63f8.tar.xz hypervideo-pre-0c0ff18f7d9087c8306a8ad8713aef409a7f63f8.zip |
[CI] Created quick-test
-rw-r--r-- | .github/workflows/ci.yml | 16 | ||||
-rw-r--r-- | .github/workflows/quick-test.yml | 31 | ||||
-rw-r--r-- | README.md | 5 |
3 files changed, 36 insertions, 16 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e48f9192..b8baf1fad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: CI +name: Full Test on: [push] jobs: tests: @@ -60,16 +60,4 @@ jobs: env: YTDL_TEST_SET: ${{ matrix.ytdl-test-set }} run: ./devscripts/run_tests.${{ matrix.run-tests-ext }} - flake8: - name: Linter - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - name: Install flake8 - run: pip install flake8 - - name: Run flake8 - run: flake8 .
\ No newline at end of file + # flake8 has been moved to quick-test
\ No newline at end of file diff --git a/.github/workflows/quick-test.yml b/.github/workflows/quick-test.yml new file mode 100644 index 000000000..cd1e79930 --- /dev/null +++ b/.github/workflows/quick-test.yml @@ -0,0 +1,31 @@ +name: Core Test +on: [push] +jobs: + tests: + name: Core Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Install nose + run: pip install nose + - name: Run tests + env: + YTDL_TEST_SET: core + run: ./devscripts/run_tests.sh + flake8: + name: Linter + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Install flake8 + run: pip install flake8 + - name: Run flake8 + run: flake8 .
\ No newline at end of file @@ -1,6 +1,7 @@ -[](https://github.com/pukkandan/yt-dlc/actions?query=workflow%3ACI) -[](https://github.com/pukkandan/yt-dlc/releases/latest) +[](https://github.com/pukkandan/yt-dlc/releases/latest) [](https://github.com/pukkandan/yt-dlc/blob/master/LICENSE) +[](https://github.com/pukkandan/yt-dlc/actions?query=workflow%3ACore) +[](https://github.com/pukkandan/yt-dlc/actions?query=workflow%3AFull) youtube-dlc - download videos from youtube.com and many other [video platforms](docs/supportedsites.md) |