Skip to content

Commit

Permalink
Dependencies: Add Dostoevsky; Settings: Add Settings - Sentiment Anal…
Browse files Browse the repository at this point in the history
…ysis; Utils: Add Dostoevsky's Russian sentiment analyzer
  • Loading branch information
BLKSerene committed Aug 11, 2023
1 parent b5e5c78 commit ad4ee00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 38 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ jobs:
cache: 'pip'
cache-dependency-path: 'requirements/requirements_tests.txt'

# Check Python version
- name: Check Python version
run: python --version

# Install dependencies
- name: Install dependencies
run: |
Expand Down Expand Up @@ -86,10 +82,6 @@ jobs:
cache: 'pip'
cache-dependency-path: 'requirements/requirements_tests.txt'

# Check Python version
- name: Check Python version
run: python --version

# Install dependencies
- name: Install dependencies
run: |
Expand Down Expand Up @@ -131,10 +123,6 @@ jobs:
cache: 'pip'
cache-dependency-path: 'requirements/requirements_tests.txt'

# Check Python version
- name: Check Python version
run: python --version

# Install dependencies
- name: Install dependencies
run: |
Expand Down
12 changes: 3 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ environment:

cache:
# Windows
- "%LOCALAPPDATA%/pip/Cache"
- %LOCALAPPDATA%/pip/Cache -> requirements/requirements_tests.txt
# macOS
- "/Users/appveyor/Library/Caches/pip"
- /Users/appveyor/Library/Caches/pip -> requirements/requirements_tests.txt
# Linux
- "/home/appveyor/.cache/pip"
- /home/appveyor/.cache/pip -> requirements/requirements_tests.txt

stack: python 3.10

Expand All @@ -51,8 +51,6 @@ for:

install:
- cmd: set PATH=%PYTHON%;%PYTHON%/Scripts;%PATH%
# Check Python version
- python --version
- python -m pip install --upgrade pip setuptools
- pip install --requirement requirements/requirements_tests.txt
- pip install --requirement requirements/requirements_no_deps.txt --no-deps
Expand Down Expand Up @@ -82,8 +80,6 @@ for:

install:
- cmd: set PATH=%PYTHON%;%PYTHON%/Scripts;%PATH%
# Check Python version
- python --version
# Install dependencies
- python -m pip install --upgrade pip setuptools
- pip install --requirement requirements/requirements_tests.txt
Expand Down Expand Up @@ -115,8 +111,6 @@ for:

install:
- cmd: set PATH=%PYTHON%;%PYTHON%/Scripts;%PATH%
# Check Python version
- python --version
# Install dependencies
- python -m pip install --upgrade pip setuptools
- pip install --requirement requirements/requirements_tests.txt
Expand Down
22 changes: 5 additions & 17 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,12 @@ jobs:

- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements/requirements_tests.txt'
key: 'ver | pip | "$(Agent.OS)" | requirements/requirements_tests.txt'
restoreKeys: |
ver | pip | "$(Agent.OS)"
ver2 | pip | "$(Agent.OS)"
path: $(PIP_CACHE_DIR)
displayName: Cache pip packages

# Check Python version
- script: python --version
displayName: 'Check Python version'

# Install dependencies
- script: |
pip install --upgrade pip setuptools
Expand Down Expand Up @@ -82,16 +78,12 @@ jobs:

- task: Cache@2
inputs:
key: 'pip | "$(Agent.OS)" | requirements/requirements_tests.txt'
key: 'ver | pip | "$(Agent.OS)" | requirements/requirements_tests.txt'
restoreKeys: |
ver | pip | "$(Agent.OS)"
ver2 | pip | "$(Agent.OS)"
path: $(PIP_CACHE_DIR)
displayName: Cache pip packages

# Check Python version
- script: python3 --version
displayName: 'Check Python version'

# Install dependencies
- script: |
pip3 install --upgrade pip setuptools
Expand Down Expand Up @@ -133,14 +125,10 @@ jobs:
inputs:
key: 'pip | "$(Agent.OS)" | requirements/requirements_tests.txt'
restoreKeys: |
ver | pip | "$(Agent.OS)"
pip | "$(Agent.OS)"
path: $(PIP_CACHE_DIR)
displayName: Cache pip packages

# Check Python version
- script: python3.10 --version
displayName: 'Check Python version'

# Install dependencies
- script: |
pip3.10 install --upgrade pip setuptools
Expand Down

0 comments on commit ad4ee00

Please sign in to comment.