Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
#!/bin/sh | |
echo Disabling vpnagentd... | |
sudo launchctl disable system/com.cisco.anyconnect.vpnagentd | |
echo Tearing down vpnagentd... | |
sudo launchctl bootout system /Library/LaunchDaemons/com.cisco.anyconnect.vpnagentd.plist | |
echo Deactivating Cisco AnyConnect Socket Filter Extension... | |
/Applications/Cisco/Cisco\ AnyConnect\ Socket\ Filter.app/Contents/MacOS/Cisco\ AnyConnect\ Socket\ Filter -deactivateExt |
import glob | |
import os | |
from selenium import webdriver | |
from selenium.webdriver.chrome.service import Service as ChromeService | |
from webdriver_manager.opera import OperaDriverManager | |
def test_operadriver_manager_with_selenium_win(): |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
# See https://codeship.com/documentation/docker/browser-testing/ | |
FROM myapp:base | |
# We need wget to set up the PPA and xvfb to have a virtual screen and unzip to install the Chromedriver | |
RUN apt-get install -y wget xvfb unzip | |
# Set up the Chrome PPA | |
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list |
FROM python:3.7.9-alpine3.13 AS compile-image | |
RUN apk upgrade && apk --no-cache add \ | |
# for badges and anybadge | |
gcc=10.2.1_pre1-r3 \ | |
libc-dev=0.7.2-r3 \ | |
# for cryptography | |
libressl-dev=3.1.5-r0 \ | |
libffi-dev=3.3-r2 \ | |
cargo=1.47.0-r2 \ | |
rust=1.47.0-r2 \ |
SLACK_TEXT_START: 'Pipeline <$CI_PIPELINE_URL|$CI_PIPELINE_ID> _has started_ *$CI_PIPELINE_SOURCE* job <$CI_JOB_URL|$CI_JOB_ID> on *$ENVIRONMENT* _at branch_ *<$CI_PROJECT_URL/commit/$CI_COMMIT_SHA|$CI_COMMIT_REF_NAME>*' | |
SLACK_TEXT_FINISH: 'Pipeline <$CI_PIPELINE_URL|$CI_PIPELINE_ID> _has finished_ *$CI_PIPELINE_SOURCE* job <$CI_JOB_URL|$CI_JOB_ID> on *$ENVIRONMENT* _at branch_ *<$CI_PROJECT_URL/commit/$CI_COMMIT_SHA|$CI_COMMIT_REF_NAME>* _and generated_ *<$ALLURE_DIR|Allure Reports>*' | |
##################################### | |
# Custom Slack POST-message report # | |
##################################### | |
slack_notification: | |
script: | |
- > | |
curl |
FROM ubuntu:18.04 | |
# Set Time Zone | |
ENV pyversion=3.7.6 \ | |
TZ=Europe/Moscow | |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
# install python | |
# Prepare system | |
RUN apt-get update \ |
FROM python:3.7-alpine | |
# install dependencies | |
USER root | |
COPY requirements.txt requirements.txt | |
RUN pip3 install --no-cache-dir -r requirements.txt | |
# Installs latest Chromium package. | |
RUN echo @edge http://mirrors.aliyun.com/alpine/v3.11/community > /etc/apk/repositories \ | |
&& echo @edge http://mirrors.aliyun.com/alpine/v3.11/main >> /etc/apk/repositories \ |