| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9c644ca commit 7885ec3
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ jobs: | |||
| 23 | 23 | os: [ubuntu-latest, windows-latest, macos-latest] | |
| 24 | 24 | python-version: ['3.9', 'pypy-3.7-v7.x'] | |
| 25 | 25 | steps: | |
| 26 | - - uses: actions/checkout@v2 | ||
| 26 | + - uses: actions/checkout@v3 | ||
| 27 | 27 | - name: Setup Python | |
| 28 | 28 | uses: ./ | |
| 29 | 29 | with: | |
@@ -41,7 +41,7 @@ jobs: | |||
| 41 | 41 | os: [ubuntu-latest, windows-latest, macos-latest] | |
| 42 | 42 | python-version: ['3.9', 'pypy-3.7-v7.x'] | |
| 43 | 43 | steps: | |
| 44 | - - uses: actions/checkout@v2 | ||
| 44 | + - uses: actions/checkout@v3 | ||
| 45 | 45 | - name: Setup Python | |
| 46 | 46 | uses: ./ | |
| 47 | 47 | with: | |
@@ -50,7 +50,9 @@ jobs: | |||
| 50 | 50 | - name: Install pipenv | |
| 51 | 51 | run: pipx install pipenv | |
| 52 | 52 | - name: Install dependencies | |
| 53 | - run: pipenv install numpy | ||
| 53 | + run: | | ||
| 54 | + cd __tests__/data | ||
| 55 | + pipenv install --verbose | ||
| 54 | 56 | ||
| 55 | 57 | python-poetry-dependencies-caching: | |
| 56 | 58 | name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
@@ -61,7 +63,7 @@ jobs: | |||
| 61 | 63 | os: [ubuntu-latest, windows-latest, macos-latest] | |
| 62 | 64 | python-version: ['3.9', 'pypy-3.7-v7.x'] | |
| 63 | 65 | steps: | |
| 64 | - - uses: actions/checkout@v2 | ||
| 66 | + - uses: actions/checkout@v3 | ||
| 65 | 67 | - name: Install poetry | |
| 66 | 68 | run: pipx install poetry | |
| 67 | 69 | - name: Setup Python | |
@@ -83,7 +85,7 @@ jobs: | |||
| 83 | 85 | os: [ubuntu-latest, windows-latest, macos-latest] | |
| 84 | 86 | python-version: ['3.9', 'pypy-3.7-v7.x'] | |
| 85 | 87 | steps: | |
| 86 | - - uses: actions/checkout@v2 | ||
| 88 | + - uses: actions/checkout@v3 | ||
| 87 | 89 | - name: Setup Python | |
| 88 | 90 | uses: ./ | |
| 89 | 91 | with: | |
@@ -102,14 +104,16 @@ jobs: | |||
| 102 | 104 | os: [ubuntu-latest, windows-latest, macos-latest] | |
| 103 | 105 | python-version: ['3.9', 'pypy-3.7-v7.x'] | |
| 104 | 106 | steps: | |
| 105 | - - uses: actions/checkout@v2 | ||
| 107 | + - uses: actions/checkout@v3 | ||
| 106 | 108 | - name: Setup Python | |
| 107 | 109 | uses: ./ | |
| 108 | 110 | with: | |
| 109 | 111 | python-version: ${{ matrix.python-version }} | |
| 110 | 112 | cache: 'pipenv' | |
| 111 | - cache-dependency-path: '**/requirements-linux.txt' | ||
| 113 | + cache-dependency-path: '**/pipenv-requirements.txt' | ||
| 112 | 114 | - name: Install pipenv | |
| 113 | 115 | run: pipx install pipenv | |
| 114 | 116 | - name: Install dependencies | |
| 115 | - run: pipenv install numpy | ||
| 117 | + run: | | ||
| 118 | + cd __tests__/data | ||
| 119 | + pipenv install --verbose | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ import {getCacheDistributor} from '../src/cache-distributions/cache-factory'; | |||
| 5 | 5 | ||
| 6 | 6 | describe('restore-cache', () => { | |
| 7 | 7 | const pipFileLockHash = | |
| 8 | - '67d817abcde9c72da0ed5b8f235647cb14638b9ff9d742b42e4406d2eb16fe3c'; | ||
| 8 | + 'd1dd6218299d8a6db5fc2001d988b34a8b31f1e9d0bb4534d377dde7c19f64b3'; | ||
| 9 | 9 | const requirementsHash = | |
| 10 | 10 | 'd8110e0006d7fb5ee76365d565eef9d37df1d11598b912d3eb66d398d57a1121'; | |
| 11 | 11 | const requirementsLinuxHash = | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ import {State} from '../src/cache-distributions/cache-distributor'; | |||
| 6 | 6 | ||
| 7 | 7 | describe('run', () => { | |
| 8 | 8 | const pipFileLockHash = | |
| 9 | - '67d817abcde9c72da0ed5b8f235647cb14638b9ff9d742b42e4406d2eb16fe3c'; | ||
| 9 | + 'd1dd6218299d8a6db5fc2001d988b34a8b31f1e9d0bb4534d377dde7c19f64b3'; | ||
| 10 | 10 | const requirementsHash = | |
| 11 | 11 | 'd8110e0006d7fb5ee76365d565eef9d37df1d11598b912d3eb66d398d57a1121'; | |
| 12 | 12 | const requirementsLinuxHash = | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,13 @@ | |||
| 1 | + [[source]] | ||
| 2 | + url = "https://pypi.org/simple" | ||
| 3 | + verify_ssl = true | ||
| 4 | + name = "pypi" | ||
| 5 | + | ||
| 6 | + [packages] | ||
| 7 | + numpy = "1.22.3" | ||
| 8 | + pandas = "1.4.2" | ||
| 9 | + | ||
| 10 | + [dev-packages] | ||
| 11 | + | ||
| 12 | + [requires] | ||
| 13 | + python_version = "*" | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments