- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 this commit 上运行 GitLab CI 时
用这个gitlab-ci.yml
:
stages:
- format
- test
black_formatting:
image: python:3.6
stage: format
before_script:
# Perform an update to make sure the system is up to date.
- sudo apt-get update --fix-missing
# Download miniconda.
- wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; bash miniconda.sh -b -f -p $HOME/miniconda;
# Ensure the (mini) conda environment can be activated.
- export PATH="$HOME/miniconda/bin:$PATH"
# (Re)create the environment.yml file for the repository.
- conda env create -q -f environment.yml -n checkstyle-for-bash --force
# Activate the environment of the repository.
- source activate checkstyle-for-bash
script:
# Verify the Python code is black formatting compliant.
- black . --check --exclude '\.venv/|\.local/|\.cache/|\.git/'
# Verify the Python code is flake8 formatting compliant.
- flake8 .
allow_failure: false
test:pytest:36:
stage: test
image: python:3.6
script:
# Ensure the (mini) conda environment can be activated.
- export PATH="$HOME/miniconda/bin:$PATH"
# Activate the environment of the repository.
- source activate checkstyle-for-bash
# Run the python tests.
- python -m pytest
它输出:
Running with gitlab-runner 14.8.0 (565b6c0b)
on trucolrunner DS42qHSq
Preparing the "shell" executor
00:00
Using Shell executor...
Preparing environment
00:00
Running on pcname...
Getting source from Git repository
00:02
Fetching changes with git depth set to 20...
Reinitialized existing Git repository in /home/gitlab-runner/builds/DS42qHSq/0/root/checkstyle-for-bash/.git/
Checking out 001577c3 as main...
Removing miniconda.sh
Skipping Git submodules setup
Executing "step_script" stage of the job script
02:55
$ sudo apt-get update --fix-missing
Hit:1 http://nl.archive.ubuntu.com/ubuntu impish InRelease
Get:2 http://security.ubuntu.com/ubuntu impish-security InRelease [110 kB]
Get:3 http://nl.archive.ubuntu.com/ubuntu impish-updates InRelease [115 kB]
Hit:4 https://repo.nordvpn.com/deb/nordvpn/debian stable InRelease
Get:5 http://nl.archive.ubuntu.com/ubuntu impish-backports InRelease [101 kB]
Hit:6 https://brave-browser-apt-release.s3.brave.com stable InRelease
Get:7 http://security.ubuntu.com/ubuntu impish-security/main amd64 DEP-11 Metadata [20,3 kB]
Get:8 http://security.ubuntu.com/ubuntu impish-security/universe amd64 DEP-11 Metadata [3.624 B]
Get:9 http://nl.archive.ubuntu.com/ubuntu impish-updates/main amd64 DEP-11 Metadata [25,8 kB]
Get:10 http://nl.archive.ubuntu.com/ubuntu impish-updates/universe amd64 DEP-11 Metadata [35,4 kB]
Get:11 http://nl.archive.ubuntu.com/ubuntu impish-updates/multiverse amd64 DEP-11 Metadata [940 B]
Get:12 http://nl.archive.ubuntu.com/ubuntu impish-backports/universe amd64 DEP-11 Metadata [16,4 kB]
Fetched 428 kB in 2s (235 kB/s)
Reading package lists...
$ wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; bash miniconda.sh -b -f -p $HOME/miniconda;
PREFIX=/home/gitlab-runner/miniconda
Unpacking payload ...
Collecting package metadata (current_repodata.json): ...working... done
Solving environment: ...working... done
# All requested packages already installed.
installation finished.
$ export PATH="$HOME/miniconda/bin:$PATH"
$ conda env create -q -f environment.yml -n checkstyle-for-bash --force
Collecting package metadata (repodata.json): ...working... done
Solving environment: ...working... done
Preparing transaction: ...working... done
Verifying transaction: ...working... done
Executing transaction: ...working... done
Installing pip dependencies: ...working... done
$ source activate checkstyle-for-bash
$ black . --check --exclude '\.venv/|\.local/|\.cache/|\.git/'
would reformat src/arg_parser.py
would reformat src/helper_text_parsing.py
Oh no! 💥 💔 💥
2 files would be reformatted, 10 files would be left unchanged.
ERROR: Job failed: exit status 1
但是,如果我在 GitHub 存储库上运行 black src/**
,black 返回:
~/git/checkstyle-for-bash$ git pull
Already up to date.
(base) some@name:~/git/checkstyle-for-bash$ black src/**
All done! ✨ 🍰 ✨
8 files left unchanged.
以防万一我没有克隆正确的存储库,我还手动将 src/arg_parser.py
文件的内容从 GitLab 复制粘贴到 ~/git/checkstyle-for -bash/src/arg_parser.py
并再次运行 black
。然而,输出是一样的,它没有改变任何东西。
为了完整起见,这是 src/arg_parser.py
文件的内容:
# This is the main code of this project nr, and it manages running the code and
# outputting the results to LaTex.
import argparse
def parse_cli_args():
# Instantiate the parser
parser = argparse.ArgumentParser(description="Optional app description")
# Include argument parsing for default code.
# Allow user to load a graph from file.
parser.add_argument(
"--ggl",
dest="google_style_guide",
action="store_true",
help=(
"boolean flag, determines whether the Google Style Guide for "
"Bash rules are followed."
),
)
# Allow user to specify an infile.
parser.add_argument("infile", nargs="?", type=argparse.FileType("r"))
# Specify default argument values for the parser.
parser.set_defaults(google_style_guide=True,)
# Load the arguments that are given.
args = parser.parse_args()
return args
是什么导致 GitLab CI 说文件将被黑色重新格式化(即使文件在运行黑色时没有重新格式化(在同一设备上(在不同的 conda 环境中)))?
我在测试 conda
black 命令的同一台设备上运行我自己的 GitLab CI。 GitLab CI 复制存储库的 GitHub 提交,一次一个,在其上运行其 CI,然后将结果报告回 GitHub。
我目前无法在 clearnet 上公开我的 GitLab 服务器,因为我位于我目前无法控制的网关后面。
我相当确定这是我这边的一个“愚蠢”错误,但是我还没有弄清楚它是什么。特别是因为我手动复制粘贴了 src/arg_parser.py
文件的 GitLab 文件内容两次,并运行了两次 black 以验证 black 确实不会更改“那个”文件。另外,为了确保它不是尾随的换行符或其他任何东西,我使用了鼠标的复制按钮,而不是手动选择:
此外,该文件符合 flake8 标准。我目前的猜测是,不知何故,CI 没有在该存储库的最新提交上运行。但是,要验证我是否单击了失败提交的 GitLab,它确实重定向到 GitLab 中的“05e85fd54f93ccfc427023b21f9cdb0c0cd6db2e”提交(复制): 正是从这次提交中,我复制粘贴了 src/arg_parser.py
文件两次。
另一种猜测是 gitlab-ci.yml
加载了一个 miniconda 环境,而我的本地版本 black 使用了一个完整的 conda 环境。也许他们有不同的换行符,这会导致格式差异。 (尽管我怀疑情况是否如此)。
我再次运行 CI,同时包含 black 。
命令,区别在于:gitlab-ci.yml
脚本中的--diff
''' Return
和:
'''Return
如随附输出中所示:
$ black . --diff --exclude '\.venv/|\.local/|\.cache/|\.git/'
--- src/arg_parser.py 2022-04-03 10:13:10.751289 +0000
+++ src/arg_parser.py 2022-04-03 11:11:26.297995 +0000
@@ -24,10 +24,12 @@
# Allow user to specify an infile.
parser.add_argument("infile", nargs="?", type=argparse.FileType("r"))
# Specify default argument values for the parser.
- parser.set_defaults(google_style_guide=True,)
+ parser.set_defaults(
+ google_style_guide=True,
+ )
# Load the arguments that are given.
args = parser.parse_args()
return args
would reformat src/arg_parser.py
--- src/helper_text_parsing.py 2022-04-02 19:35:45.142619 +0000
+++ src/helper_text_parsing.py 2022-04-03 11:11:26.342908 +0000
@@ -5,11 +5,11 @@
def add_two(x):
return x + 2
def get_function_line_nrs(filecontent, rules):
- """ Returns two lists containing the starting and ending line numbers of
+ """Returns two lists containing the starting and ending line numbers of
the functions respectively.
:param filecontent: The content of the bash file that is being analysed.
:param rules: The Bash formatting rules that are chosen by the user.
"""
would reformat src/helper_text_parsing.py
All done! ✨ 🍰 ✨
2 files would be reformatted, 10 files would be left unchanged.
我不太清楚为什么会发生这种情况,因为我认为 python black 对于给定的有效 python 文件总是会收敛到完全相同的格式。我猜是因为在同一台设备上的miniconda环境和anaconda环境之间使用了两个不同的黑色版本。
为了检验这个假设,我在 gitlab-ci.yml
中包含了一个 black --version
命令。
最佳答案
GitLab CI中的miniconda环境使用的是python black
版本:
black, 22.3.0 (compiled: yes)
而本地环境使用的是python black
版本:
black, version 19.10b0
更新本地 black
版本,根据最新的 python black
版本推送格式化代码,并在该 GitHub 提交上运行 GitLab CI 导致 GitLab CI 成功跑。
关于python - GitLab CI Python 黑色格式化程序说 : would reformat, 而运行黑色不会重新格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71724842/
我正在从事的项目需要使用 toString 方法打印银行帐户余额。我不允许向当前程序添加任何方法,但我需要将 myBalance 变量格式化为 double 型,该变量保留两位小数而不是一位。在这个特
我喜欢 Visual Studio (2008) 格式化 C# 代码的方式;不幸的是,在编写 C++ 代码时,它的行为方式似乎有所不同。 比如我这样写代码的时候: class Test { publi
Scanner scan = new Scanner(System.in); System.out.println("Enter three positive integers seperated b
在 aspose(使用 C#)中用于格式化数字的正确样式属性是什么。我想做两件事: 1) 将五位数字格式化为邮政编码。(我不太确定使用哪个 Style 属性来获取自定义 excel 邮政编码格式) 2
我希望用户输入从 00 到 23 和从 00 到 59 的 Local.Time 的小时和分钟,我将其扫描为一个 int。它有效,但对于从 00 到 09 的值,int 忽略 0,然后将其放置为 0,
大家好, 请查看上面的图片,我有两张 table 。在下面代码的第一个表中,我得到了这种格式。 但我想像 Table2 那样格式化,每个合并单元格中的行数是动态的,而且不一样。 有没有办法像table
我在一个 laravel 网站工作,我只是想知道是否有办法为用户格式化 created_at 值,因为现在它类似于以下内容: 2017-09-20 13:41 但我更愿意将其格式化为易于阅读的格式,例
我正在尝试在 JTextPane 中进行一些基本的格式化。为此,我决定使用 html(HTMLDocument 和 HTMLEditorKit)。 这里是按钮的操作监听器代码,应使所选文本变为粗体 b
是否有规则或插件会导致 es-lint 错误或警告,如果范围内的声明没有像下面那样间隔,赋值运算符的对齐方式相同? var a = 'a'; var bb = 'b'; var ccc = 'd
我正在尝试重新格式化 LinkedHashMap 的输出以排除逗号和大括号。 这是我的看跌期权: token.put("[Server.Protocol]", url.getProtocol() +
我有一个程序,可以从文本文件中读取大量文本,然后根据文本内容随机化内容以显示为短篇故事。该程序可以运行,但最后一部分(我显示的 Material )非常笨重且效率不高,我想知道是否有人对如何更有效地获
我正在尝试将 VIM 作为我的 ruby/rails 编辑器。太胖了,我对它的功能印象深刻 并且我能够安装以下插件以提供更好的 IDE 体验 自动配对 Better-snipmate-snippe
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我有两个 jQuery 函数。我想先运行下面的第一个,然后在该函数完成后运行另一个。通常我会在代码的第一部分添加一个函数,但不确定如何使用这个 block 来做到这一点,或者它是否是正确的方法。 简而
在 Python 2.7 中,我有一个包含数字 1-25 字符串的列表(例如)。打印它们时,我希望列表打印 5 行,每行 5 个数字。 理想情况下: >>> print(myList) ['1', '
我有以下功能来打印借阅者已取出的书籍列表。 void searchBorrowerLoans(int a) { int i; for (i = 1
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 5 年前。 Improv
我正在尝试实现一个用作 ListView header 的 TextView。我想对其进行格式化,以便我基本上有一个以第一行为中心的标题,然后是以下几行的附加信息。如何格式化文本/字符串以创建这种格式
我尝试格式化数字字段 select to_char(12315.83453, 'FM999999999999D9999') 在这种情况下一切正常。结果是 12315.8345 但是如果值在0到1之间
我有一个带有 BigDecimal 字段的类。我把这个对象放到 JSP(Spring MVC)中。而且我需要显示十进制不带零的 BigDecimal 字段(20.00 就像 20),这就是为什么我的
我是一名优秀的程序员,十分优秀!