Skip to content

Commit a117394

Browse files
committed
update ci
1 parent 1540d56 commit a117394

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.github/workflows/ci.yml

+10-14
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,10 @@ jobs:
3737
python-version: ${{ matrix.python-version }}
3838

3939
- name: "Upgrade pip"
40-
run: |
41-
set -xe
42-
python -VV
43-
python -m site
44-
python -m pip install --upgrade pip
45-
pip install hatch
46-
hatch env create test
40+
run: python -m pip install --upgrade pip
41+
42+
- name: "Install hatch"
43+
run: pip install hatch
4744

4845
- name: "Run tests for ${{ matrix.python-version }}"
4946
run: hatch run test:no-cov
@@ -59,12 +56,11 @@ jobs:
5956
with:
6057
python-version: 3.11
6158

62-
- name: "Install doc dependencies"
63-
run: |
64-
set -xe
65-
python -m pip install --upgrade pip
66-
pip install hatch
67-
hatch env create docs
59+
- name: "Upgrade pip"
60+
run: python -m pip install --upgrade pip
61+
62+
- name: "Install hatch"
63+
run: pip install hatch
6864

6965
- name: "Build docs"
70-
run: hatch run docs:build-ci
66+
run: hatch run docs:ci-build

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ include = [
7070
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
7171

7272
[tool.hatch.envs.test]
73-
extra-dependencies = [
73+
dependencies = [
7474
"attrs>=17.4.0",
7575
"azure-datalake-store >= 0.0.30",
7676
"azure-identity>=1.3.1",

0 commit comments

Comments
 (0)